Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 1 | /**************************************************************************** |
Ben Hutchings | f7a6d2c | 2013-08-29 23:32:48 +0100 | [diff] [blame] | 2 | * Driver for Solarflare network controllers and boards |
| 3 | * Copyright 2008-2013 Solarflare Communications Inc. |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 4 | * |
| 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 Cree | 42ca087 | 2015-05-27 13:14:26 +0100 | [diff] [blame] | 11 | #include <linux/moduleparam.h> |
Boqun Feng | 8456799 | 2015-08-26 19:52:46 +0800 | [diff] [blame] | 12 | #include <linux/atomic.h> |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 13 | #include "net_driver.h" |
| 14 | #include "nic.h" |
| 15 | #include "io.h" |
Ben Hutchings | 8b8a95a | 2012-09-18 01:57:07 +0100 | [diff] [blame] | 16 | #include "farch_regs.h" |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 17 | #include "mcdi_pcol.h" |
| 18 | #include "phy.h" |
| 19 | |
| 20 | /************************************************************************** |
| 21 | * |
| 22 | * Management-Controller-to-Driver Interface |
| 23 | * |
| 24 | ************************************************************************** |
| 25 | */ |
| 26 | |
Ben Hutchings | ebf98e7 | 2012-12-01 02:21:17 +0000 | [diff] [blame] | 27 | #define MCDI_RPC_TIMEOUT (10 * HZ) |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 28 | |
Ben Hutchings | 3f713bf | 2011-12-20 23:39:31 +0000 | [diff] [blame] | 29 | /* 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 Pieczko | b2d32f0 | 2013-09-20 16:45:10 +0100 | [diff] [blame] | 31 | * via these mechanisms then wait 250ms for the status word to be set. |
Daniel Pieczko | d36a08b | 2013-06-20 11:40:07 +0100 | [diff] [blame] | 32 | */ |
Ben Hutchings | 3f713bf | 2011-12-20 23:39:31 +0000 | [diff] [blame] | 33 | #define MCDI_STATUS_DELAY_US 100 |
Daniel Pieczko | b2d32f0 | 2013-09-20 16:45:10 +0100 | [diff] [blame] | 34 | #define MCDI_STATUS_DELAY_COUNT 2500 |
Ben Hutchings | 3f713bf | 2011-12-20 23:39:31 +0000 | [diff] [blame] | 35 | #define MCDI_STATUS_SLEEP_MS \ |
| 36 | (MCDI_STATUS_DELAY_US * MCDI_STATUS_DELAY_COUNT / 1000) |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 37 | |
| 38 | #define SEQ_MASK \ |
| 39 | EFX_MASK32(EFX_WIDTH(MCDI_HEADER_SEQ)) |
| 40 | |
Ben Hutchings | cade715 | 2013-08-27 23:12:31 +0100 | [diff] [blame] | 41 | struct efx_mcdi_async_param { |
| 42 | struct list_head list; |
| 43 | unsigned int cmd; |
| 44 | size_t inlen; |
| 45 | size_t outlen; |
Edward Cree | 1e0b812 | 2013-05-31 18:36:12 +0100 | [diff] [blame] | 46 | bool quiet; |
Ben Hutchings | cade715 | 2013-08-27 23:12:31 +0100 | [diff] [blame] | 47 | efx_mcdi_async_completer *complete; |
| 48 | unsigned long cookie; |
| 49 | /* followed by request/response buffer */ |
| 50 | }; |
| 51 | |
| 52 | static void efx_mcdi_timeout_async(unsigned long context); |
Ben Hutchings | 4c75b43a | 2013-08-29 19:04:03 +0100 | [diff] [blame] | 53 | static int efx_mcdi_drv_attach(struct efx_nic *efx, bool driver_operating, |
| 54 | bool *was_attached_out); |
Robert Stonehouse | 5731d7b | 2013-10-09 11:52:43 +0100 | [diff] [blame] | 55 | static bool efx_mcdi_poll_once(struct efx_nic *efx); |
Edward Cree | e283546 | 2014-04-16 19:27:48 +0100 | [diff] [blame] | 56 | static void efx_mcdi_abandon(struct efx_nic *efx); |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 57 | |
Edward Cree | 42ca087 | 2015-05-27 13:14:26 +0100 | [diff] [blame] | 58 | #ifdef CONFIG_SFC_MCDI_LOGGING |
| 59 | static bool mcdi_logging_default; |
| 60 | module_param(mcdi_logging_default, bool, 0644); |
| 61 | MODULE_PARM_DESC(mcdi_logging_default, |
| 62 | "Enable MCDI logging on newly-probed functions"); |
| 63 | #endif |
| 64 | |
Ben Hutchings | f073dde | 2012-09-18 02:33:55 +0100 | [diff] [blame] | 65 | int efx_mcdi_init(struct efx_nic *efx) |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 66 | { |
| 67 | struct efx_mcdi_iface *mcdi; |
Ben Hutchings | 4c75b43a | 2013-08-29 19:04:03 +0100 | [diff] [blame] | 68 | bool already_attached; |
Edward Cree | 75aba2a | 2015-05-27 13:13:54 +0100 | [diff] [blame] | 69 | int rc = -ENOMEM; |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 70 | |
Ben Hutchings | f3ad500 | 2012-09-18 02:33:56 +0100 | [diff] [blame] | 71 | efx->mcdi = kzalloc(sizeof(*efx->mcdi), GFP_KERNEL); |
| 72 | if (!efx->mcdi) |
Edward Cree | 75aba2a | 2015-05-27 13:13:54 +0100 | [diff] [blame] | 73 | goto fail; |
Ben Hutchings | f3ad500 | 2012-09-18 02:33:56 +0100 | [diff] [blame] | 74 | |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 75 | mcdi = efx_mcdi(efx); |
Ben Hutchings | cade715 | 2013-08-27 23:12:31 +0100 | [diff] [blame] | 76 | mcdi->efx = efx; |
Edward Cree | 75aba2a | 2015-05-27 13:13:54 +0100 | [diff] [blame] | 77 | #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 Cree | 42ca087 | 2015-05-27 13:14:26 +0100 | [diff] [blame] | 82 | mcdi->logging_enabled = mcdi_logging_default; |
Edward Cree | 75aba2a | 2015-05-27 13:13:54 +0100 | [diff] [blame] | 83 | #endif |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 84 | init_waitqueue_head(&mcdi->wq); |
| 85 | spin_lock_init(&mcdi->iface_lock); |
Ben Hutchings | 251111d | 2013-08-27 23:04:29 +0100 | [diff] [blame] | 86 | mcdi->state = MCDI_STATE_QUIESCENT; |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 87 | mcdi->mode = MCDI_MODE_POLL; |
Ben Hutchings | cade715 | 2013-08-27 23:12:31 +0100 | [diff] [blame] | 88 | 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 Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 92 | |
| 93 | (void) efx_mcdi_poll_reboot(efx); |
Daniel Pieczko | d36a08b | 2013-06-20 11:40:07 +0100 | [diff] [blame] | 94 | mcdi->new_epoch = true; |
Ben Hutchings | f073dde | 2012-09-18 02:33:55 +0100 | [diff] [blame] | 95 | |
| 96 | /* Recover from a failed assertion before probing */ |
Ben Hutchings | 4c75b43a | 2013-08-29 19:04:03 +0100 | [diff] [blame] | 97 | rc = efx_mcdi_handle_assertion(efx); |
| 98 | if (rc) |
Edward Cree | 75aba2a | 2015-05-27 13:13:54 +0100 | [diff] [blame] | 99 | goto fail2; |
Ben Hutchings | 4c75b43a | 2013-08-29 19:04:03 +0100 | [diff] [blame] | 100 | |
| 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 Cree | 75aba2a | 2015-05-27 13:13:54 +0100 | [diff] [blame] | 108 | goto fail2; |
Ben Hutchings | 4c75b43a | 2013-08-29 19:04:03 +0100 | [diff] [blame] | 109 | } |
| 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 Hutchings | 0bcf4a6 | 2013-10-18 19:21:45 +0100 | [diff] [blame] | 115 | if (efx->mcdi->fn_flags & |
| 116 | (1 << MC_CMD_DRV_ATTACH_EXT_OUT_FLAG_PRIMARY)) |
| 117 | efx->primary = efx; |
| 118 | |
Ben Hutchings | 4c75b43a | 2013-08-29 19:04:03 +0100 | [diff] [blame] | 119 | return 0; |
Edward Cree | 75aba2a | 2015-05-27 13:13:54 +0100 | [diff] [blame] | 120 | fail2: |
| 121 | #ifdef CONFIG_SFC_MCDI_LOGGING |
| 122 | free_page((unsigned long)mcdi->logging_buffer); |
| 123 | fail1: |
| 124 | #endif |
| 125 | kfree(efx->mcdi); |
| 126 | efx->mcdi = NULL; |
| 127 | fail: |
| 128 | return rc; |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 129 | } |
| 130 | |
Ben Hutchings | f3ad500 | 2012-09-18 02:33:56 +0100 | [diff] [blame] | 131 | void efx_mcdi_fini(struct efx_nic *efx) |
| 132 | { |
Ben Hutchings | 4c75b43a | 2013-08-29 19:04:03 +0100 | [diff] [blame] | 133 | 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 Cree | 75aba2a | 2015-05-27 13:13:54 +0100 | [diff] [blame] | 141 | #ifdef CONFIG_SFC_MCDI_LOGGING |
| 142 | free_page((unsigned long)efx->mcdi->iface.logging_buffer); |
| 143 | #endif |
| 144 | |
Ben Hutchings | f3ad500 | 2012-09-18 02:33:56 +0100 | [diff] [blame] | 145 | kfree(efx->mcdi); |
| 146 | } |
| 147 | |
Ben Hutchings | 2f4bcdc | 2013-08-22 22:06:09 +0100 | [diff] [blame] | 148 | static void efx_mcdi_send_request(struct efx_nic *efx, unsigned cmd, |
| 149 | const efx_dword_t *inbuf, size_t inlen) |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 150 | { |
| 151 | struct efx_mcdi_iface *mcdi = efx_mcdi(efx); |
Edward Cree | 75aba2a | 2015-05-27 13:13:54 +0100 | [diff] [blame] | 152 | #ifdef CONFIG_SFC_MCDI_LOGGING |
| 153 | char *buf = mcdi->logging_buffer; /* page-sized */ |
| 154 | #endif |
Ben Hutchings | df2cd8a | 2012-09-19 00:56:18 +0100 | [diff] [blame] | 155 | efx_dword_t hdr[2]; |
| 156 | size_t hdr_len; |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 157 | u32 xflags, seqno; |
| 158 | |
Ben Hutchings | 251111d | 2013-08-27 23:04:29 +0100 | [diff] [blame] | 159 | BUG_ON(mcdi->state == MCDI_STATE_QUIESCENT); |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 160 | |
Ben Hutchings | 2f4bcdc | 2013-08-22 22:06:09 +0100 | [diff] [blame] | 161 | /* 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 Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 166 | seqno = mcdi->seqno & SEQ_MASK; |
| 167 | xflags = 0; |
| 168 | if (mcdi->mode == MCDI_MODE_EVENTS) |
| 169 | xflags |= MCDI_HEADER_XFLAGS_EVREQ; |
| 170 | |
Ben Hutchings | df2cd8a | 2012-09-19 00:56:18 +0100 | [diff] [blame] | 171 | if (efx->type->mcdi_max_ver == 1) { |
| 172 | /* MCDI v1 */ |
Daniel Pieczko | d36a08b | 2013-06-20 11:40:07 +0100 | [diff] [blame] | 173 | EFX_POPULATE_DWORD_7(hdr[0], |
Ben Hutchings | df2cd8a | 2012-09-19 00:56:18 +0100 | [diff] [blame] | 174 | 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 Pieczko | d36a08b | 2013-06-20 11:40:07 +0100 | [diff] [blame] | 179 | MCDI_HEADER_XFLAGS, xflags, |
| 180 | MCDI_HEADER_NOT_EPOCH, !mcdi->new_epoch); |
Ben Hutchings | df2cd8a | 2012-09-19 00:56:18 +0100 | [diff] [blame] | 181 | hdr_len = 4; |
| 182 | } else { |
| 183 | /* MCDI v2 */ |
| 184 | BUG_ON(inlen > MCDI_CTL_SDU_LEN_MAX_V2); |
Daniel Pieczko | d36a08b | 2013-06-20 11:40:07 +0100 | [diff] [blame] | 185 | EFX_POPULATE_DWORD_7(hdr[0], |
Ben Hutchings | df2cd8a | 2012-09-19 00:56:18 +0100 | [diff] [blame] | 186 | 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 Pieczko | d36a08b | 2013-06-20 11:40:07 +0100 | [diff] [blame] | 191 | MCDI_HEADER_XFLAGS, xflags, |
| 192 | MCDI_HEADER_NOT_EPOCH, !mcdi->new_epoch); |
Ben Hutchings | df2cd8a | 2012-09-19 00:56:18 +0100 | [diff] [blame] | 193 | 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 Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 198 | |
Edward Cree | 75aba2a | 2015-05-27 13:13:54 +0100 | [diff] [blame] | 199 | #ifdef CONFIG_SFC_MCDI_LOGGING |
Edward Cree | e7fef9b | 2015-05-27 13:14:01 +0100 | [diff] [blame] | 200 | if (mcdi->logging_enabled && !WARN_ON_ONCE(!buf)) { |
Edward Cree | 75aba2a | 2015-05-27 13:13:54 +0100 | [diff] [blame] | 201 | 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 Hutchings | df2cd8a | 2012-09-19 00:56:18 +0100 | [diff] [blame] | 224 | efx->type->mcdi_request(efx, hdr, hdr_len, inbuf, inlen); |
Ben Hutchings | 2f4bcdc | 2013-08-22 22:06:09 +0100 | [diff] [blame] | 225 | |
| 226 | mcdi->new_epoch = false; |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 227 | } |
| 228 | |
Ben Hutchings | 5bc283e | 2012-10-08 21:43:00 +0100 | [diff] [blame] | 229 | static 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 Hutchings | df2cd8a | 2012-09-19 00:56:18 +0100 | [diff] [blame] | 237 | TRANSLATE_ERROR(EPERM); |
Ben Hutchings | 5bc283e | 2012-10-08 21:43:00 +0100 | [diff] [blame] | 238 | TRANSLATE_ERROR(ENOENT); |
| 239 | TRANSLATE_ERROR(EINTR); |
Ben Hutchings | df2cd8a | 2012-09-19 00:56:18 +0100 | [diff] [blame] | 240 | TRANSLATE_ERROR(EAGAIN); |
Ben Hutchings | 5bc283e | 2012-10-08 21:43:00 +0100 | [diff] [blame] | 241 | TRANSLATE_ERROR(EACCES); |
| 242 | TRANSLATE_ERROR(EBUSY); |
| 243 | TRANSLATE_ERROR(EINVAL); |
| 244 | TRANSLATE_ERROR(EDEADLK); |
| 245 | TRANSLATE_ERROR(ENOSYS); |
| 246 | TRANSLATE_ERROR(ETIME); |
Ben Hutchings | df2cd8a | 2012-09-19 00:56:18 +0100 | [diff] [blame] | 247 | TRANSLATE_ERROR(EALREADY); |
| 248 | TRANSLATE_ERROR(ENOSPC); |
Ben Hutchings | 5bc283e | 2012-10-08 21:43:00 +0100 | [diff] [blame] | 249 | #undef TRANSLATE_ERROR |
Ben Hutchings | ea136ae | 2013-10-08 16:36:58 +0100 | [diff] [blame] | 250 | case MC_CMD_ERR_ENOTSUP: |
| 251 | return -EOPNOTSUPP; |
Ben Hutchings | df2cd8a | 2012-09-19 00:56:18 +0100 | [diff] [blame] | 252 | case MC_CMD_ERR_ALLOC_FAIL: |
| 253 | return -ENOBUFS; |
| 254 | case MC_CMD_ERR_MAC_EXIST: |
| 255 | return -EADDRINUSE; |
Ben Hutchings | 5bc283e | 2012-10-08 21:43:00 +0100 | [diff] [blame] | 256 | default: |
Ben Hutchings | df2cd8a | 2012-09-19 00:56:18 +0100 | [diff] [blame] | 257 | return -EPROTO; |
| 258 | } |
| 259 | } |
| 260 | |
| 261 | static 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 Cree | 75aba2a | 2015-05-27 13:13:54 +0100 | [diff] [blame] | 265 | #ifdef CONFIG_SFC_MCDI_LOGGING |
| 266 | char *buf = mcdi->logging_buffer; /* page-sized */ |
| 267 | #endif |
Ben Hutchings | df2cd8a | 2012-09-19 00:56:18 +0100 | [diff] [blame] | 268 | 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 Cree | 75aba2a | 2015-05-27 13:13:54 +0100 | [diff] [blame] | 285 | #ifdef CONFIG_SFC_MCDI_LOGGING |
Edward Cree | e7fef9b | 2015-05-27 13:14:01 +0100 | [diff] [blame] | 286 | if (mcdi->logging_enabled && !WARN_ON_ONCE(!buf)) { |
Edward Cree | 75aba2a | 2015-05-27 13:13:54 +0100 | [diff] [blame] | 287 | 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 Kenward | ac28d17 | 2015-12-23 08:56:40 +0000 | [diff] [blame^] | 318 | mcdi->resprc_raw = 0; |
Ben Hutchings | df2cd8a | 2012-09-19 00:56:18 +0100 | [diff] [blame] | 319 | 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 Kenward | ac28d17 | 2015-12-23 08:56:40 +0000 | [diff] [blame^] | 329 | mcdi->resprc_raw = EFX_DWORD_FIELD(hdr, EFX_DWORD_0); |
| 330 | mcdi->resprc = efx_mcdi_errno(mcdi->resprc_raw); |
Ben Hutchings | df2cd8a | 2012-09-19 00:56:18 +0100 | [diff] [blame] | 331 | } else { |
| 332 | mcdi->resprc = 0; |
Ben Hutchings | 5bc283e | 2012-10-08 21:43:00 +0100 | [diff] [blame] | 333 | } |
| 334 | } |
| 335 | |
Robert Stonehouse | 5731d7b | 2013-10-09 11:52:43 +0100 | [diff] [blame] | 336 | static 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 Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 351 | static int efx_mcdi_poll(struct efx_nic *efx) |
| 352 | { |
| 353 | struct efx_mcdi_iface *mcdi = efx_mcdi(efx); |
Ben Hutchings | ebf98e7 | 2012-12-01 02:21:17 +0000 | [diff] [blame] | 354 | unsigned long time, finish; |
Ben Hutchings | 5bc283e | 2012-10-08 21:43:00 +0100 | [diff] [blame] | 355 | unsigned int spins; |
Ben Hutchings | 5bc283e | 2012-10-08 21:43:00 +0100 | [diff] [blame] | 356 | int rc; |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 357 | |
| 358 | /* Check for a reboot atomically with respect to efx_mcdi_copyout() */ |
Ben Hutchings | 5bc283e | 2012-10-08 21:43:00 +0100 | [diff] [blame] | 359 | rc = efx_mcdi_poll_reboot(efx); |
Ben Hutchings | df2cd8a | 2012-09-19 00:56:18 +0100 | [diff] [blame] | 360 | if (rc) { |
Ben Hutchings | 369327f | 2012-10-26 17:53:12 +0100 | [diff] [blame] | 361 | spin_lock_bh(&mcdi->iface_lock); |
Ben Hutchings | df2cd8a | 2012-09-19 00:56:18 +0100 | [diff] [blame] | 362 | mcdi->resprc = rc; |
| 363 | mcdi->resp_hdr_len = 0; |
| 364 | mcdi->resp_data_len = 0; |
Ben Hutchings | 369327f | 2012-10-26 17:53:12 +0100 | [diff] [blame] | 365 | spin_unlock_bh(&mcdi->iface_lock); |
Ben Hutchings | df2cd8a | 2012-09-19 00:56:18 +0100 | [diff] [blame] | 366 | return 0; |
| 367 | } |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 368 | |
| 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 Hutchings | ebf98e7 | 2012-12-01 02:21:17 +0000 | [diff] [blame] | 374 | finish = jiffies + MCDI_RPC_TIMEOUT; |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 375 | |
| 376 | while (1) { |
| 377 | if (spins != 0) { |
| 378 | --spins; |
| 379 | udelay(1); |
Ben Hutchings | 55029c1 | 2010-01-13 04:34:25 +0000 | [diff] [blame] | 380 | } else { |
| 381 | schedule_timeout_uninterruptible(1); |
| 382 | } |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 383 | |
Ben Hutchings | ebf98e7 | 2012-12-01 02:21:17 +0000 | [diff] [blame] | 384 | time = jiffies; |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 385 | |
Robert Stonehouse | 5731d7b | 2013-10-09 11:52:43 +0100 | [diff] [blame] | 386 | if (efx_mcdi_poll_once(efx)) |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 387 | break; |
| 388 | |
Ben Hutchings | ebf98e7 | 2012-12-01 02:21:17 +0000 | [diff] [blame] | 389 | if (time_after(time, finish)) |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 390 | return -ETIMEDOUT; |
| 391 | } |
| 392 | |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 393 | /* Return rc=0 like wait_event_timeout() */ |
| 394 | return 0; |
| 395 | } |
| 396 | |
Ben Hutchings | 876be08 | 2012-10-01 20:58:35 +0100 | [diff] [blame] | 397 | /* Test and clear MC-rebooted flag for this port/function; reset |
| 398 | * software state as necessary. |
| 399 | */ |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 400 | int efx_mcdi_poll_reboot(struct efx_nic *efx) |
| 401 | { |
Ben Hutchings | f3ad500 | 2012-09-18 02:33:56 +0100 | [diff] [blame] | 402 | if (!efx->mcdi) |
| 403 | return 0; |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 404 | |
Ben Hutchings | cd0ecc9 | 2012-12-14 21:52:56 +0000 | [diff] [blame] | 405 | return efx->type->mcdi_poll_reboot(efx); |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 406 | } |
| 407 | |
Ben Hutchings | cade715 | 2013-08-27 23:12:31 +0100 | [diff] [blame] | 408 | static 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 | |
| 415 | static void efx_mcdi_acquire_sync(struct efx_mcdi_iface *mcdi) |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 416 | { |
| 417 | /* Wait until the interface becomes QUIESCENT and we win the race |
Ben Hutchings | cade715 | 2013-08-27 23:12:31 +0100 | [diff] [blame] | 418 | * to mark it RUNNING_SYNC. |
| 419 | */ |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 420 | wait_event(mcdi->wq, |
Ben Hutchings | 251111d | 2013-08-27 23:04:29 +0100 | [diff] [blame] | 421 | cmpxchg(&mcdi->state, |
Ben Hutchings | cade715 | 2013-08-27 23:12:31 +0100 | [diff] [blame] | 422 | MCDI_STATE_QUIESCENT, MCDI_STATE_RUNNING_SYNC) == |
Ben Hutchings | 251111d | 2013-08-27 23:04:29 +0100 | [diff] [blame] | 423 | MCDI_STATE_QUIESCENT); |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 424 | } |
| 425 | |
| 426 | static int efx_mcdi_await_completion(struct efx_nic *efx) |
| 427 | { |
| 428 | struct efx_mcdi_iface *mcdi = efx_mcdi(efx); |
| 429 | |
Ben Hutchings | 251111d | 2013-08-27 23:04:29 +0100 | [diff] [blame] | 430 | if (wait_event_timeout(mcdi->wq, mcdi->state == MCDI_STATE_COMPLETED, |
| 431 | MCDI_RPC_TIMEOUT) == 0) |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 432 | 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 Hutchings | cade715 | 2013-08-27 23:12:31 +0100 | [diff] [blame] | 448 | /* 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 | */ |
| 451 | static bool efx_mcdi_complete_sync(struct efx_mcdi_iface *mcdi) |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 452 | { |
Ben Hutchings | cade715 | 2013-08-27 23:12:31 +0100 | [diff] [blame] | 453 | if (cmpxchg(&mcdi->state, |
| 454 | MCDI_STATE_RUNNING_SYNC, MCDI_STATE_COMPLETED) == |
| 455 | MCDI_STATE_RUNNING_SYNC) { |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 456 | wake_up(&mcdi->wq); |
| 457 | return true; |
| 458 | } |
| 459 | |
| 460 | return false; |
| 461 | } |
| 462 | |
| 463 | static void efx_mcdi_release(struct efx_mcdi_iface *mcdi) |
| 464 | { |
Ben Hutchings | cade715 | 2013-08-27 23:12:31 +0100 | [diff] [blame] | 465 | 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 Hutchings | 251111d | 2013-08-27 23:04:29 +0100 | [diff] [blame] | 487 | mcdi->state = MCDI_STATE_QUIESCENT; |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 488 | wake_up(&mcdi->wq); |
| 489 | } |
| 490 | |
Ben Hutchings | cade715 | 2013-08-27 23:12:31 +0100 | [diff] [blame] | 491 | /* 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 | */ |
| 496 | static 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 Cree | 1e0b812 | 2013-05-31 18:36:12 +0100 | [diff] [blame] | 500 | size_t hdr_len, data_len, err_len; |
Ben Hutchings | cade715 | 2013-08-27 23:12:31 +0100 | [diff] [blame] | 501 | efx_dword_t *outbuf; |
Jon Cooper | aa09a3d | 2015-05-20 11:10:41 +0100 | [diff] [blame] | 502 | MCDI_DECLARE_BUF_ERR(errbuf); |
Ben Hutchings | cade715 | 2013-08-27 23:12:31 +0100 | [diff] [blame] | 503 | 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 Cree | 1e0b812 | 2013-05-31 18:36:12 +0100 | [diff] [blame] | 543 | 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 | } |
Ben Hutchings | cade715 | 2013-08-27 23:12:31 +0100 | [diff] [blame] | 550 | async->complete(efx, async->cookie, rc, outbuf, data_len); |
| 551 | kfree(async); |
| 552 | |
| 553 | efx_mcdi_release(mcdi); |
| 554 | |
| 555 | return true; |
| 556 | } |
| 557 | |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 558 | static void efx_mcdi_ev_cpl(struct efx_nic *efx, unsigned int seqno, |
Ben Hutchings | 5bc283e | 2012-10-08 21:43:00 +0100 | [diff] [blame] | 559 | unsigned int datalen, unsigned int mcdi_err) |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 560 | { |
| 561 | struct efx_mcdi_iface *mcdi = efx_mcdi(efx); |
| 562 | bool wake = false; |
| 563 | |
| 564 | spin_lock(&mcdi->iface_lock); |
| 565 | |
| 566 | if ((seqno ^ mcdi->seqno) & SEQ_MASK) { |
| 567 | if (mcdi->credits) |
| 568 | /* The request has been cancelled */ |
| 569 | --mcdi->credits; |
| 570 | else |
Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 571 | netif_err(efx, hw, efx->net_dev, |
| 572 | "MC response mismatch tx seq 0x%x rx " |
| 573 | "seq 0x%x\n", seqno, mcdi->seqno); |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 574 | } else { |
Ben Hutchings | df2cd8a | 2012-09-19 00:56:18 +0100 | [diff] [blame] | 575 | if (efx->type->mcdi_max_ver >= 2) { |
| 576 | /* MCDI v2 responses don't fit in an event */ |
| 577 | efx_mcdi_read_response_header(efx); |
| 578 | } else { |
| 579 | mcdi->resprc = efx_mcdi_errno(mcdi_err); |
| 580 | mcdi->resp_hdr_len = 4; |
| 581 | mcdi->resp_data_len = datalen; |
| 582 | } |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 583 | |
| 584 | wake = true; |
| 585 | } |
| 586 | |
| 587 | spin_unlock(&mcdi->iface_lock); |
| 588 | |
Ben Hutchings | cade715 | 2013-08-27 23:12:31 +0100 | [diff] [blame] | 589 | if (wake) { |
| 590 | if (!efx_mcdi_complete_async(mcdi, false)) |
| 591 | (void) efx_mcdi_complete_sync(mcdi); |
| 592 | |
| 593 | /* If the interface isn't RUNNING_ASYNC or |
| 594 | * RUNNING_SYNC then we've received a duplicate |
| 595 | * completion after we've already transitioned back to |
| 596 | * QUIESCENT. [A subsequent invocation would increment |
| 597 | * seqno, so would have failed the seqno check]. |
| 598 | */ |
| 599 | } |
| 600 | } |
| 601 | |
| 602 | static void efx_mcdi_timeout_async(unsigned long context) |
| 603 | { |
| 604 | struct efx_mcdi_iface *mcdi = (struct efx_mcdi_iface *)context; |
| 605 | |
| 606 | efx_mcdi_complete_async(mcdi, true); |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 607 | } |
| 608 | |
Ben Hutchings | 2f4bcdc | 2013-08-22 22:06:09 +0100 | [diff] [blame] | 609 | static int |
| 610 | efx_mcdi_check_supported(struct efx_nic *efx, unsigned int cmd, size_t inlen) |
| 611 | { |
| 612 | if (efx->type->mcdi_max_ver < 0 || |
| 613 | (efx->type->mcdi_max_ver < 2 && |
| 614 | cmd > MC_CMD_CMD_SPACE_ESCAPE_7)) |
| 615 | return -EINVAL; |
| 616 | |
| 617 | if (inlen > MCDI_CTL_SDU_LEN_MAX_V2 || |
| 618 | (efx->type->mcdi_max_ver < 2 && |
| 619 | inlen > MCDI_CTL_SDU_LEN_MAX_V1)) |
| 620 | return -EMSGSIZE; |
| 621 | |
| 622 | return 0; |
| 623 | } |
| 624 | |
Edward Cree | 1e0b812 | 2013-05-31 18:36:12 +0100 | [diff] [blame] | 625 | static int _efx_mcdi_rpc_finish(struct efx_nic *efx, unsigned cmd, size_t inlen, |
| 626 | efx_dword_t *outbuf, size_t outlen, |
Bert Kenward | ac28d17 | 2015-12-23 08:56:40 +0000 | [diff] [blame^] | 627 | size_t *outlen_actual, bool quiet, |
| 628 | int *raw_rc) |
Stuart Hodgson | c3cba72 | 2012-07-16 17:40:47 +0100 | [diff] [blame] | 629 | { |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 630 | struct efx_mcdi_iface *mcdi = efx_mcdi(efx); |
Jon Cooper | aa09a3d | 2015-05-20 11:10:41 +0100 | [diff] [blame] | 631 | MCDI_DECLARE_BUF_ERR(errbuf); |
Stuart Hodgson | c3cba72 | 2012-07-16 17:40:47 +0100 | [diff] [blame] | 632 | int rc; |
| 633 | |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 634 | if (mcdi->mode == MCDI_MODE_POLL) |
| 635 | rc = efx_mcdi_poll(efx); |
| 636 | else |
| 637 | rc = efx_mcdi_await_completion(efx); |
| 638 | |
| 639 | if (rc != 0) { |
Robert Stonehouse | 6b294b8 | 2013-10-09 11:52:48 +0100 | [diff] [blame] | 640 | netif_err(efx, hw, efx->net_dev, |
| 641 | "MC command 0x%x inlen %d mode %d timed out\n", |
| 642 | cmd, (int)inlen, mcdi->mode); |
| 643 | |
| 644 | if (mcdi->mode == MCDI_MODE_EVENTS && efx_mcdi_poll_once(efx)) { |
| 645 | netif_err(efx, hw, efx->net_dev, |
| 646 | "MCDI request was completed without an event\n"); |
| 647 | rc = 0; |
| 648 | } |
| 649 | |
Edward Cree | e283546 | 2014-04-16 19:27:48 +0100 | [diff] [blame] | 650 | efx_mcdi_abandon(efx); |
| 651 | |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 652 | /* Close the race with efx_mcdi_ev_cpl() executing just too late |
| 653 | * and completing a request we've just cancelled, by ensuring |
| 654 | * that the seqno check therein fails. |
| 655 | */ |
| 656 | spin_lock_bh(&mcdi->iface_lock); |
| 657 | ++mcdi->seqno; |
| 658 | ++mcdi->credits; |
| 659 | spin_unlock_bh(&mcdi->iface_lock); |
Robert Stonehouse | 6b294b8 | 2013-10-09 11:52:48 +0100 | [diff] [blame] | 660 | } |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 661 | |
Edward Cree | 1e0b812 | 2013-05-31 18:36:12 +0100 | [diff] [blame] | 662 | if (rc != 0) { |
| 663 | if (outlen_actual) |
| 664 | *outlen_actual = 0; |
| 665 | } else { |
| 666 | size_t hdr_len, data_len, err_len; |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 667 | |
| 668 | /* At the very least we need a memory barrier here to ensure |
| 669 | * we pick up changes from efx_mcdi_ev_cpl(). Protect against |
| 670 | * a spurious efx_mcdi_ev_cpl() running concurrently by |
| 671 | * acquiring the iface_lock. */ |
| 672 | spin_lock_bh(&mcdi->iface_lock); |
Ben Hutchings | 5bc283e | 2012-10-08 21:43:00 +0100 | [diff] [blame] | 673 | rc = mcdi->resprc; |
Bert Kenward | ac28d17 | 2015-12-23 08:56:40 +0000 | [diff] [blame^] | 674 | if (raw_rc) |
| 675 | *raw_rc = mcdi->resprc_raw; |
Ben Hutchings | 369327f | 2012-10-26 17:53:12 +0100 | [diff] [blame] | 676 | hdr_len = mcdi->resp_hdr_len; |
| 677 | data_len = mcdi->resp_data_len; |
Edward Cree | 1e0b812 | 2013-05-31 18:36:12 +0100 | [diff] [blame] | 678 | err_len = min(sizeof(errbuf), data_len); |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 679 | spin_unlock_bh(&mcdi->iface_lock); |
| 680 | |
Ben Hutchings | 5bc283e | 2012-10-08 21:43:00 +0100 | [diff] [blame] | 681 | BUG_ON(rc > 0); |
| 682 | |
Edward Cree | 1e0b812 | 2013-05-31 18:36:12 +0100 | [diff] [blame] | 683 | efx->type->mcdi_read_response(efx, outbuf, hdr_len, |
| 684 | min(outlen, data_len)); |
| 685 | if (outlen_actual) |
| 686 | *outlen_actual = data_len; |
| 687 | |
| 688 | efx->type->mcdi_read_response(efx, errbuf, hdr_len, err_len); |
| 689 | |
| 690 | if (cmd == MC_CMD_REBOOT && rc == -EIO) { |
| 691 | /* Don't reset if MC_CMD_REBOOT returns EIO */ |
| 692 | } else if (rc == -EIO || rc == -EINTR) { |
Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 693 | netif_err(efx, hw, efx->net_dev, "MC fatal error %d\n", |
| 694 | -rc); |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 695 | efx_schedule_reset(efx, RESET_TYPE_MC_FAILURE); |
Edward Cree | 1e0b812 | 2013-05-31 18:36:12 +0100 | [diff] [blame] | 696 | } else if (rc && !quiet) { |
| 697 | efx_mcdi_display_error(efx, cmd, inlen, errbuf, err_len, |
| 698 | rc); |
| 699 | } |
Ben Hutchings | 3f713bf | 2011-12-20 23:39:31 +0000 | [diff] [blame] | 700 | |
| 701 | if (rc == -EIO || rc == -EINTR) { |
| 702 | msleep(MCDI_STATUS_SLEEP_MS); |
| 703 | efx_mcdi_poll_reboot(efx); |
Daniel Pieczko | d36a08b | 2013-06-20 11:40:07 +0100 | [diff] [blame] | 704 | mcdi->new_epoch = true; |
Ben Hutchings | 3f713bf | 2011-12-20 23:39:31 +0000 | [diff] [blame] | 705 | } |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 706 | } |
| 707 | |
| 708 | efx_mcdi_release(mcdi); |
| 709 | return rc; |
| 710 | } |
| 711 | |
Edward Cree | 1e0b812 | 2013-05-31 18:36:12 +0100 | [diff] [blame] | 712 | static int _efx_mcdi_rpc(struct efx_nic *efx, unsigned cmd, |
| 713 | const efx_dword_t *inbuf, size_t inlen, |
| 714 | efx_dword_t *outbuf, size_t outlen, |
Bert Kenward | ac28d17 | 2015-12-23 08:56:40 +0000 | [diff] [blame^] | 715 | size_t *outlen_actual, bool quiet, int *raw_rc) |
Edward Cree | 1e0b812 | 2013-05-31 18:36:12 +0100 | [diff] [blame] | 716 | { |
| 717 | int rc; |
| 718 | |
| 719 | rc = efx_mcdi_rpc_start(efx, cmd, inbuf, inlen); |
Bert Kenward | ac28d17 | 2015-12-23 08:56:40 +0000 | [diff] [blame^] | 720 | if (rc) |
Edward Cree | 1e0b812 | 2013-05-31 18:36:12 +0100 | [diff] [blame] | 721 | return rc; |
Bert Kenward | ac28d17 | 2015-12-23 08:56:40 +0000 | [diff] [blame^] | 722 | |
Edward Cree | 1e0b812 | 2013-05-31 18:36:12 +0100 | [diff] [blame] | 723 | return _efx_mcdi_rpc_finish(efx, cmd, inlen, outbuf, outlen, |
Bert Kenward | ac28d17 | 2015-12-23 08:56:40 +0000 | [diff] [blame^] | 724 | outlen_actual, quiet, raw_rc); |
Edward Cree | 1e0b812 | 2013-05-31 18:36:12 +0100 | [diff] [blame] | 725 | } |
| 726 | |
Bert Kenward | ac28d17 | 2015-12-23 08:56:40 +0000 | [diff] [blame^] | 727 | static int _efx_mcdi_rpc_evb_retry(struct efx_nic *efx, unsigned cmd, |
| 728 | const efx_dword_t *inbuf, size_t inlen, |
| 729 | efx_dword_t *outbuf, size_t outlen, |
| 730 | size_t *outlen_actual, bool quiet) |
| 731 | { |
| 732 | int raw_rc = 0; |
| 733 | int rc; |
| 734 | |
| 735 | rc = _efx_mcdi_rpc(efx, cmd, inbuf, inlen, |
| 736 | outbuf, outlen, outlen_actual, true, &raw_rc); |
| 737 | |
| 738 | if ((rc == -EPROTO) && (raw_rc == MC_CMD_ERR_NO_EVB_PORT) && |
| 739 | efx->type->is_vf) { |
| 740 | /* If the EVB port isn't available within a VF this may |
| 741 | * mean the PF is still bringing the switch up. We should |
| 742 | * retry our request shortly. |
| 743 | */ |
| 744 | unsigned long abort_time = jiffies + MCDI_RPC_TIMEOUT; |
| 745 | unsigned int delay_us = 10000; |
| 746 | |
| 747 | netif_dbg(efx, hw, efx->net_dev, |
| 748 | "%s: NO_EVB_PORT; will retry request\n", |
| 749 | __func__); |
| 750 | |
| 751 | do { |
| 752 | usleep_range(delay_us, delay_us + 10000); |
| 753 | rc = _efx_mcdi_rpc(efx, cmd, inbuf, inlen, |
| 754 | outbuf, outlen, outlen_actual, |
| 755 | true, &raw_rc); |
| 756 | if (delay_us < 100000) |
| 757 | delay_us <<= 1; |
| 758 | } while ((rc == -EPROTO) && |
| 759 | (raw_rc == MC_CMD_ERR_NO_EVB_PORT) && |
| 760 | time_before(jiffies, abort_time)); |
| 761 | } |
| 762 | |
| 763 | if (rc && !quiet && !(cmd == MC_CMD_REBOOT && rc == -EIO)) |
| 764 | efx_mcdi_display_error(efx, cmd, inlen, |
| 765 | outbuf, outlen, rc); |
| 766 | |
| 767 | return rc; |
| 768 | } |
| 769 | |
| 770 | /** |
| 771 | * efx_mcdi_rpc - Issue an MCDI command and wait for completion |
| 772 | * @efx: NIC through which to issue the command |
| 773 | * @cmd: Command type number |
| 774 | * @inbuf: Command parameters |
| 775 | * @inlen: Length of command parameters, in bytes. Must be a multiple |
| 776 | * of 4 and no greater than %MCDI_CTL_SDU_LEN_MAX_V1. |
| 777 | * @outbuf: Response buffer. May be %NULL if @outlen is 0. |
| 778 | * @outlen: Length of response buffer, in bytes. If the actual |
| 779 | * response is longer than @outlen & ~3, it will be truncated |
| 780 | * to that length. |
| 781 | * @outlen_actual: Pointer through which to return the actual response |
| 782 | * length. May be %NULL if this is not needed. |
| 783 | * |
| 784 | * This function may sleep and therefore must be called in an appropriate |
| 785 | * context. |
| 786 | * |
| 787 | * Return: A negative error code, or zero if successful. The error |
| 788 | * code may come from the MCDI response or may indicate a failure |
| 789 | * to communicate with the MC. In the former case, the response |
| 790 | * will still be copied to @outbuf and *@outlen_actual will be |
| 791 | * set accordingly. In the latter case, *@outlen_actual will be |
| 792 | * set to zero. |
| 793 | */ |
Edward Cree | 1e0b812 | 2013-05-31 18:36:12 +0100 | [diff] [blame] | 794 | int efx_mcdi_rpc(struct efx_nic *efx, unsigned cmd, |
| 795 | const efx_dword_t *inbuf, size_t inlen, |
| 796 | efx_dword_t *outbuf, size_t outlen, |
| 797 | size_t *outlen_actual) |
| 798 | { |
Bert Kenward | ac28d17 | 2015-12-23 08:56:40 +0000 | [diff] [blame^] | 799 | return _efx_mcdi_rpc_evb_retry(efx, cmd, inbuf, inlen, outbuf, outlen, |
| 800 | outlen_actual, false); |
Edward Cree | 1e0b812 | 2013-05-31 18:36:12 +0100 | [diff] [blame] | 801 | } |
| 802 | |
| 803 | /* Normally, on receiving an error code in the MCDI response, |
| 804 | * efx_mcdi_rpc will log an error message containing (among other |
| 805 | * things) the raw error code, by means of efx_mcdi_display_error. |
| 806 | * This _quiet version suppresses that; if the caller wishes to log |
| 807 | * the error conditionally on the return code, it should call this |
| 808 | * function and is then responsible for calling efx_mcdi_display_error |
| 809 | * as needed. |
| 810 | */ |
| 811 | int efx_mcdi_rpc_quiet(struct efx_nic *efx, unsigned cmd, |
| 812 | const efx_dword_t *inbuf, size_t inlen, |
| 813 | efx_dword_t *outbuf, size_t outlen, |
| 814 | size_t *outlen_actual) |
| 815 | { |
Bert Kenward | ac28d17 | 2015-12-23 08:56:40 +0000 | [diff] [blame^] | 816 | return _efx_mcdi_rpc_evb_retry(efx, cmd, inbuf, inlen, outbuf, outlen, |
| 817 | outlen_actual, true); |
Edward Cree | 1e0b812 | 2013-05-31 18:36:12 +0100 | [diff] [blame] | 818 | } |
| 819 | |
| 820 | int efx_mcdi_rpc_start(struct efx_nic *efx, unsigned cmd, |
| 821 | const efx_dword_t *inbuf, size_t inlen) |
| 822 | { |
| 823 | struct efx_mcdi_iface *mcdi = efx_mcdi(efx); |
| 824 | int rc; |
| 825 | |
| 826 | rc = efx_mcdi_check_supported(efx, cmd, inlen); |
| 827 | if (rc) |
| 828 | return rc; |
| 829 | |
| 830 | if (efx->mc_bist_for_other_fn) |
| 831 | return -ENETDOWN; |
| 832 | |
Edward Cree | e283546 | 2014-04-16 19:27:48 +0100 | [diff] [blame] | 833 | if (mcdi->mode == MCDI_MODE_FAIL) |
| 834 | return -ENETDOWN; |
| 835 | |
Edward Cree | 1e0b812 | 2013-05-31 18:36:12 +0100 | [diff] [blame] | 836 | efx_mcdi_acquire_sync(mcdi); |
| 837 | efx_mcdi_send_request(efx, cmd, inbuf, inlen); |
| 838 | return 0; |
| 839 | } |
| 840 | |
| 841 | static int _efx_mcdi_rpc_async(struct efx_nic *efx, unsigned int cmd, |
| 842 | const efx_dword_t *inbuf, size_t inlen, |
| 843 | size_t outlen, |
| 844 | efx_mcdi_async_completer *complete, |
| 845 | unsigned long cookie, bool quiet) |
| 846 | { |
| 847 | struct efx_mcdi_iface *mcdi = efx_mcdi(efx); |
| 848 | struct efx_mcdi_async_param *async; |
| 849 | int rc; |
| 850 | |
| 851 | rc = efx_mcdi_check_supported(efx, cmd, inlen); |
| 852 | if (rc) |
| 853 | return rc; |
| 854 | |
| 855 | if (efx->mc_bist_for_other_fn) |
| 856 | return -ENETDOWN; |
| 857 | |
| 858 | async = kmalloc(sizeof(*async) + ALIGN(max(inlen, outlen), 4), |
| 859 | GFP_ATOMIC); |
| 860 | if (!async) |
| 861 | return -ENOMEM; |
| 862 | |
| 863 | async->cmd = cmd; |
| 864 | async->inlen = inlen; |
| 865 | async->outlen = outlen; |
| 866 | async->quiet = quiet; |
| 867 | async->complete = complete; |
| 868 | async->cookie = cookie; |
| 869 | memcpy(async + 1, inbuf, inlen); |
| 870 | |
| 871 | spin_lock_bh(&mcdi->async_lock); |
| 872 | |
| 873 | if (mcdi->mode == MCDI_MODE_EVENTS) { |
| 874 | list_add_tail(&async->list, &mcdi->async_list); |
| 875 | |
| 876 | /* If this is at the front of the queue, try to start it |
| 877 | * immediately |
| 878 | */ |
| 879 | if (mcdi->async_list.next == &async->list && |
| 880 | efx_mcdi_acquire_async(mcdi)) { |
| 881 | efx_mcdi_send_request(efx, cmd, inbuf, inlen); |
| 882 | mod_timer(&mcdi->async_timer, |
| 883 | jiffies + MCDI_RPC_TIMEOUT); |
| 884 | } |
| 885 | } else { |
| 886 | kfree(async); |
| 887 | rc = -ENETDOWN; |
| 888 | } |
| 889 | |
| 890 | spin_unlock_bh(&mcdi->async_lock); |
| 891 | |
| 892 | return rc; |
| 893 | } |
| 894 | |
| 895 | /** |
| 896 | * efx_mcdi_rpc_async - Schedule an MCDI command to run asynchronously |
| 897 | * @efx: NIC through which to issue the command |
| 898 | * @cmd: Command type number |
| 899 | * @inbuf: Command parameters |
| 900 | * @inlen: Length of command parameters, in bytes |
| 901 | * @outlen: Length to allocate for response buffer, in bytes |
| 902 | * @complete: Function to be called on completion or cancellation. |
| 903 | * @cookie: Arbitrary value to be passed to @complete. |
| 904 | * |
| 905 | * This function does not sleep and therefore may be called in atomic |
| 906 | * context. It will fail if event queues are disabled or if MCDI |
| 907 | * event completions have been disabled due to an error. |
| 908 | * |
| 909 | * If it succeeds, the @complete function will be called exactly once |
| 910 | * in atomic context, when one of the following occurs: |
| 911 | * (a) the completion event is received (in NAPI context) |
| 912 | * (b) event queues are disabled (in the process that disables them) |
| 913 | * (c) the request times-out (in timer context) |
| 914 | */ |
| 915 | int |
| 916 | efx_mcdi_rpc_async(struct efx_nic *efx, unsigned int cmd, |
| 917 | const efx_dword_t *inbuf, size_t inlen, size_t outlen, |
| 918 | efx_mcdi_async_completer *complete, unsigned long cookie) |
| 919 | { |
| 920 | return _efx_mcdi_rpc_async(efx, cmd, inbuf, inlen, outlen, complete, |
| 921 | cookie, false); |
| 922 | } |
| 923 | |
| 924 | int efx_mcdi_rpc_async_quiet(struct efx_nic *efx, unsigned int cmd, |
| 925 | const efx_dword_t *inbuf, size_t inlen, |
| 926 | size_t outlen, efx_mcdi_async_completer *complete, |
| 927 | unsigned long cookie) |
| 928 | { |
| 929 | return _efx_mcdi_rpc_async(efx, cmd, inbuf, inlen, outlen, complete, |
| 930 | cookie, true); |
| 931 | } |
| 932 | |
| 933 | int efx_mcdi_rpc_finish(struct efx_nic *efx, unsigned cmd, size_t inlen, |
| 934 | efx_dword_t *outbuf, size_t outlen, |
| 935 | size_t *outlen_actual) |
| 936 | { |
| 937 | return _efx_mcdi_rpc_finish(efx, cmd, inlen, outbuf, outlen, |
Bert Kenward | ac28d17 | 2015-12-23 08:56:40 +0000 | [diff] [blame^] | 938 | outlen_actual, false, NULL); |
Edward Cree | 1e0b812 | 2013-05-31 18:36:12 +0100 | [diff] [blame] | 939 | } |
| 940 | |
| 941 | int efx_mcdi_rpc_finish_quiet(struct efx_nic *efx, unsigned cmd, size_t inlen, |
| 942 | efx_dword_t *outbuf, size_t outlen, |
| 943 | size_t *outlen_actual) |
| 944 | { |
| 945 | return _efx_mcdi_rpc_finish(efx, cmd, inlen, outbuf, outlen, |
Bert Kenward | ac28d17 | 2015-12-23 08:56:40 +0000 | [diff] [blame^] | 946 | outlen_actual, true, NULL); |
Edward Cree | 1e0b812 | 2013-05-31 18:36:12 +0100 | [diff] [blame] | 947 | } |
| 948 | |
| 949 | void efx_mcdi_display_error(struct efx_nic *efx, unsigned cmd, |
| 950 | size_t inlen, efx_dword_t *outbuf, |
| 951 | size_t outlen, int rc) |
| 952 | { |
| 953 | int code = 0, err_arg = 0; |
| 954 | |
| 955 | if (outlen >= MC_CMD_ERR_CODE_OFST + 4) |
| 956 | code = MCDI_DWORD(outbuf, ERR_CODE); |
| 957 | if (outlen >= MC_CMD_ERR_ARG_OFST + 4) |
| 958 | err_arg = MCDI_DWORD(outbuf, ERR_ARG); |
| 959 | netif_err(efx, hw, efx->net_dev, |
| 960 | "MC command 0x%x inlen %d failed rc=%d (raw=%d) arg=%d\n", |
| 961 | cmd, (int)inlen, rc, code, err_arg); |
| 962 | } |
| 963 | |
Ben Hutchings | cade715 | 2013-08-27 23:12:31 +0100 | [diff] [blame] | 964 | /* Switch to polled MCDI completions. This can be called in various |
| 965 | * error conditions with various locks held, so it must be lockless. |
| 966 | * Caller is responsible for flushing asynchronous requests later. |
| 967 | */ |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 968 | void efx_mcdi_mode_poll(struct efx_nic *efx) |
| 969 | { |
| 970 | struct efx_mcdi_iface *mcdi; |
| 971 | |
Ben Hutchings | f3ad500 | 2012-09-18 02:33:56 +0100 | [diff] [blame] | 972 | if (!efx->mcdi) |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 973 | return; |
| 974 | |
| 975 | mcdi = efx_mcdi(efx); |
Edward Cree | e283546 | 2014-04-16 19:27:48 +0100 | [diff] [blame] | 976 | /* If already in polling mode, nothing to do. |
| 977 | * If in fail-fast state, don't switch to polled completion. |
| 978 | * FLR recovery will do that later. |
| 979 | */ |
| 980 | if (mcdi->mode == MCDI_MODE_POLL || mcdi->mode == MCDI_MODE_FAIL) |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 981 | return; |
| 982 | |
| 983 | /* We can switch from event completion to polled completion, because |
| 984 | * mcdi requests are always completed in shared memory. We do this by |
| 985 | * switching the mode to POLL'd then completing the request. |
| 986 | * efx_mcdi_await_completion() will then call efx_mcdi_poll(). |
| 987 | * |
| 988 | * We need an smp_wmb() to synchronise with efx_mcdi_await_completion(), |
Ben Hutchings | cade715 | 2013-08-27 23:12:31 +0100 | [diff] [blame] | 989 | * which efx_mcdi_complete_sync() provides for us. |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 990 | */ |
| 991 | mcdi->mode = MCDI_MODE_POLL; |
| 992 | |
Ben Hutchings | cade715 | 2013-08-27 23:12:31 +0100 | [diff] [blame] | 993 | efx_mcdi_complete_sync(mcdi); |
| 994 | } |
| 995 | |
| 996 | /* Flush any running or queued asynchronous requests, after event processing |
| 997 | * is stopped |
| 998 | */ |
| 999 | void efx_mcdi_flush_async(struct efx_nic *efx) |
| 1000 | { |
| 1001 | struct efx_mcdi_async_param *async, *next; |
| 1002 | struct efx_mcdi_iface *mcdi; |
| 1003 | |
| 1004 | if (!efx->mcdi) |
| 1005 | return; |
| 1006 | |
| 1007 | mcdi = efx_mcdi(efx); |
| 1008 | |
Edward Cree | e283546 | 2014-04-16 19:27:48 +0100 | [diff] [blame] | 1009 | /* We must be in poll or fail mode so no more requests can be queued */ |
| 1010 | BUG_ON(mcdi->mode == MCDI_MODE_EVENTS); |
Ben Hutchings | cade715 | 2013-08-27 23:12:31 +0100 | [diff] [blame] | 1011 | |
| 1012 | del_timer_sync(&mcdi->async_timer); |
| 1013 | |
| 1014 | /* If a request is still running, make sure we give the MC |
| 1015 | * time to complete it so that the response won't overwrite our |
| 1016 | * next request. |
| 1017 | */ |
| 1018 | if (mcdi->state == MCDI_STATE_RUNNING_ASYNC) { |
| 1019 | efx_mcdi_poll(efx); |
| 1020 | mcdi->state = MCDI_STATE_QUIESCENT; |
| 1021 | } |
| 1022 | |
| 1023 | /* Nothing else will access the async list now, so it is safe |
| 1024 | * to walk it without holding async_lock. If we hold it while |
| 1025 | * calling a completer then lockdep may warn that we have |
| 1026 | * acquired locks in the wrong order. |
| 1027 | */ |
| 1028 | list_for_each_entry_safe(async, next, &mcdi->async_list, list) { |
| 1029 | async->complete(efx, async->cookie, -ENETDOWN, NULL, 0); |
| 1030 | list_del(&async->list); |
| 1031 | kfree(async); |
| 1032 | } |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 1033 | } |
| 1034 | |
| 1035 | void efx_mcdi_mode_event(struct efx_nic *efx) |
| 1036 | { |
| 1037 | struct efx_mcdi_iface *mcdi; |
| 1038 | |
Ben Hutchings | f3ad500 | 2012-09-18 02:33:56 +0100 | [diff] [blame] | 1039 | if (!efx->mcdi) |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 1040 | return; |
| 1041 | |
| 1042 | mcdi = efx_mcdi(efx); |
Edward Cree | e283546 | 2014-04-16 19:27:48 +0100 | [diff] [blame] | 1043 | /* If already in event completion mode, nothing to do. |
| 1044 | * If in fail-fast state, don't switch to event completion. FLR |
| 1045 | * recovery will do that later. |
| 1046 | */ |
| 1047 | if (mcdi->mode == MCDI_MODE_EVENTS || mcdi->mode == MCDI_MODE_FAIL) |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 1048 | return; |
| 1049 | |
| 1050 | /* We can't switch from polled to event completion in the middle of a |
| 1051 | * request, because the completion method is specified in the request. |
| 1052 | * So acquire the interface to serialise the requestors. We don't need |
| 1053 | * to acquire the iface_lock to change the mode here, but we do need a |
| 1054 | * write memory barrier ensure that efx_mcdi_rpc() sees it, which |
| 1055 | * efx_mcdi_acquire() provides. |
| 1056 | */ |
Ben Hutchings | cade715 | 2013-08-27 23:12:31 +0100 | [diff] [blame] | 1057 | efx_mcdi_acquire_sync(mcdi); |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 1058 | mcdi->mode = MCDI_MODE_EVENTS; |
| 1059 | efx_mcdi_release(mcdi); |
| 1060 | } |
| 1061 | |
| 1062 | static void efx_mcdi_ev_death(struct efx_nic *efx, int rc) |
| 1063 | { |
| 1064 | struct efx_mcdi_iface *mcdi = efx_mcdi(efx); |
| 1065 | |
| 1066 | /* If there is an outstanding MCDI request, it has been terminated |
| 1067 | * either by a BADASSERT or REBOOT event. If the mcdi interface is |
| 1068 | * in polled mode, then do nothing because the MC reboot handler will |
| 1069 | * set the header correctly. However, if the mcdi interface is waiting |
| 1070 | * for a CMDDONE event it won't receive it [and since all MCDI events |
| 1071 | * are sent to the same queue, we can't be racing with |
| 1072 | * efx_mcdi_ev_cpl()] |
| 1073 | * |
Ben Hutchings | cade715 | 2013-08-27 23:12:31 +0100 | [diff] [blame] | 1074 | * If there is an outstanding asynchronous request, we can't |
| 1075 | * complete it now (efx_mcdi_complete() would deadlock). The |
| 1076 | * reset process will take care of this. |
| 1077 | * |
| 1078 | * There's a race here with efx_mcdi_send_request(), because |
| 1079 | * we might receive a REBOOT event *before* the request has |
| 1080 | * been copied out. In polled mode (during startup) this is |
| 1081 | * irrelevant, because efx_mcdi_complete_sync() is ignored. In |
| 1082 | * event mode, this condition is just an edge-case of |
| 1083 | * receiving a REBOOT event after posting the MCDI |
| 1084 | * request. Did the mc reboot before or after the copyout? The |
| 1085 | * best we can do always is just return failure. |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 1086 | */ |
| 1087 | spin_lock(&mcdi->iface_lock); |
Ben Hutchings | cade715 | 2013-08-27 23:12:31 +0100 | [diff] [blame] | 1088 | if (efx_mcdi_complete_sync(mcdi)) { |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 1089 | if (mcdi->mode == MCDI_MODE_EVENTS) { |
| 1090 | mcdi->resprc = rc; |
Ben Hutchings | df2cd8a | 2012-09-19 00:56:18 +0100 | [diff] [blame] | 1091 | mcdi->resp_hdr_len = 0; |
| 1092 | mcdi->resp_data_len = 0; |
Steve Hodgson | 18e3ee2 | 2010-12-02 13:46:55 +0000 | [diff] [blame] | 1093 | ++mcdi->credits; |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 1094 | } |
Ben Hutchings | 3f713bf | 2011-12-20 23:39:31 +0000 | [diff] [blame] | 1095 | } else { |
| 1096 | int count; |
| 1097 | |
Ben Hutchings | 3f713bf | 2011-12-20 23:39:31 +0000 | [diff] [blame] | 1098 | /* Consume the status word since efx_mcdi_rpc_finish() won't */ |
| 1099 | for (count = 0; count < MCDI_STATUS_DELAY_COUNT; ++count) { |
Daniel Pieczko | c577e59 | 2015-10-09 10:40:35 +0100 | [diff] [blame] | 1100 | rc = efx_mcdi_poll_reboot(efx); |
| 1101 | if (rc) |
Ben Hutchings | 3f713bf | 2011-12-20 23:39:31 +0000 | [diff] [blame] | 1102 | break; |
| 1103 | udelay(MCDI_STATUS_DELAY_US); |
| 1104 | } |
Daniel Pieczko | c577e59 | 2015-10-09 10:40:35 +0100 | [diff] [blame] | 1105 | |
| 1106 | /* On EF10, a CODE_MC_REBOOT event can be received without the |
| 1107 | * reboot detection in efx_mcdi_poll_reboot() being triggered. |
| 1108 | * If zero was returned from the final call to |
| 1109 | * efx_mcdi_poll_reboot(), the MC reboot wasn't noticed but the |
| 1110 | * MC has definitely rebooted so prepare for the reset. |
| 1111 | */ |
| 1112 | if (!rc && efx->type->mcdi_reboot_detected) |
| 1113 | efx->type->mcdi_reboot_detected(efx); |
| 1114 | |
Daniel Pieczko | d36a08b | 2013-06-20 11:40:07 +0100 | [diff] [blame] | 1115 | mcdi->new_epoch = true; |
Daniel Pieczko | dfdaa95 | 2013-09-18 10:16:24 +0100 | [diff] [blame] | 1116 | |
| 1117 | /* Nobody was waiting for an MCDI request, so trigger a reset */ |
| 1118 | efx_schedule_reset(efx, RESET_TYPE_MC_FAILURE); |
Ben Hutchings | 3f713bf | 2011-12-20 23:39:31 +0000 | [diff] [blame] | 1119 | } |
| 1120 | |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 1121 | spin_unlock(&mcdi->iface_lock); |
| 1122 | } |
| 1123 | |
Jon Cooper | 74cd60a | 2013-09-16 14:18:51 +0100 | [diff] [blame] | 1124 | /* The MC is going down in to BIST mode. set the BIST flag to block |
| 1125 | * new MCDI, cancel any outstanding MCDI and and schedule a BIST-type reset |
| 1126 | * (which doesn't actually execute a reset, it waits for the controlling |
| 1127 | * function to reset it). |
| 1128 | */ |
| 1129 | static void efx_mcdi_ev_bist(struct efx_nic *efx) |
| 1130 | { |
| 1131 | struct efx_mcdi_iface *mcdi = efx_mcdi(efx); |
| 1132 | |
| 1133 | spin_lock(&mcdi->iface_lock); |
| 1134 | efx->mc_bist_for_other_fn = true; |
| 1135 | if (efx_mcdi_complete_sync(mcdi)) { |
| 1136 | if (mcdi->mode == MCDI_MODE_EVENTS) { |
| 1137 | mcdi->resprc = -EIO; |
| 1138 | mcdi->resp_hdr_len = 0; |
| 1139 | mcdi->resp_data_len = 0; |
| 1140 | ++mcdi->credits; |
| 1141 | } |
| 1142 | } |
| 1143 | mcdi->new_epoch = true; |
| 1144 | efx_schedule_reset(efx, RESET_TYPE_MC_BIST); |
| 1145 | spin_unlock(&mcdi->iface_lock); |
| 1146 | } |
| 1147 | |
Edward Cree | e283546 | 2014-04-16 19:27:48 +0100 | [diff] [blame] | 1148 | /* MCDI timeouts seen, so make all MCDI calls fail-fast and issue an FLR to try |
| 1149 | * to recover. |
| 1150 | */ |
| 1151 | static void efx_mcdi_abandon(struct efx_nic *efx) |
| 1152 | { |
| 1153 | struct efx_mcdi_iface *mcdi = efx_mcdi(efx); |
| 1154 | |
| 1155 | if (xchg(&mcdi->mode, MCDI_MODE_FAIL) == MCDI_MODE_FAIL) |
| 1156 | return; /* it had already been done */ |
| 1157 | netif_dbg(efx, hw, efx->net_dev, "MCDI is timing out; trying to recover\n"); |
| 1158 | efx_schedule_reset(efx, RESET_TYPE_MCDI_TIMEOUT); |
| 1159 | } |
| 1160 | |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 1161 | /* Called from falcon_process_eventq for MCDI events */ |
| 1162 | void efx_mcdi_process_event(struct efx_channel *channel, |
| 1163 | efx_qword_t *event) |
| 1164 | { |
| 1165 | struct efx_nic *efx = channel->efx; |
| 1166 | int code = EFX_QWORD_FIELD(*event, MCDI_EVENT_CODE); |
| 1167 | u32 data = EFX_QWORD_FIELD(*event, MCDI_EVENT_DATA); |
| 1168 | |
| 1169 | switch (code) { |
| 1170 | case MCDI_EVENT_CODE_BADSSERT: |
Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 1171 | netif_err(efx, hw, efx->net_dev, |
| 1172 | "MC watchdog or assertion failure at 0x%x\n", data); |
Ben Hutchings | 5bc283e | 2012-10-08 21:43:00 +0100 | [diff] [blame] | 1173 | efx_mcdi_ev_death(efx, -EINTR); |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 1174 | break; |
| 1175 | |
| 1176 | case MCDI_EVENT_CODE_PMNOTICE: |
Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 1177 | netif_info(efx, wol, efx->net_dev, "MCDI PM event.\n"); |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 1178 | break; |
| 1179 | |
| 1180 | case MCDI_EVENT_CODE_CMDDONE: |
| 1181 | efx_mcdi_ev_cpl(efx, |
| 1182 | MCDI_EVENT_FIELD(*event, CMDDONE_SEQ), |
| 1183 | MCDI_EVENT_FIELD(*event, CMDDONE_DATALEN), |
| 1184 | MCDI_EVENT_FIELD(*event, CMDDONE_ERRNO)); |
| 1185 | break; |
| 1186 | |
| 1187 | case MCDI_EVENT_CODE_LINKCHANGE: |
| 1188 | efx_mcdi_process_link_change(efx, event); |
| 1189 | break; |
| 1190 | case MCDI_EVENT_CODE_SENSOREVT: |
| 1191 | efx_mcdi_sensor_event(efx, event); |
| 1192 | break; |
| 1193 | case MCDI_EVENT_CODE_SCHEDERR: |
Robert Stonehouse | 2d9955b | 2013-10-07 18:44:17 +0100 | [diff] [blame] | 1194 | netif_dbg(efx, hw, efx->net_dev, |
| 1195 | "MC Scheduler alert (0x%x)\n", data); |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 1196 | break; |
| 1197 | case MCDI_EVENT_CODE_REBOOT: |
Ben Hutchings | 8127d66 | 2013-08-29 19:19:29 +0100 | [diff] [blame] | 1198 | case MCDI_EVENT_CODE_MC_REBOOT: |
Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 1199 | netif_info(efx, hw, efx->net_dev, "MC Reboot\n"); |
Ben Hutchings | 5bc283e | 2012-10-08 21:43:00 +0100 | [diff] [blame] | 1200 | efx_mcdi_ev_death(efx, -EIO); |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 1201 | break; |
Jon Cooper | 74cd60a | 2013-09-16 14:18:51 +0100 | [diff] [blame] | 1202 | case MCDI_EVENT_CODE_MC_BIST: |
| 1203 | netif_info(efx, hw, efx->net_dev, "MC entered BIST mode\n"); |
| 1204 | efx_mcdi_ev_bist(efx); |
| 1205 | break; |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 1206 | case MCDI_EVENT_CODE_MAC_STATS_DMA: |
| 1207 | /* MAC stats are gather lazily. We can ignore this. */ |
| 1208 | break; |
Ben Hutchings | cd2d5b5 | 2012-02-14 00:48:07 +0000 | [diff] [blame] | 1209 | case MCDI_EVENT_CODE_FLR: |
Shradha Shah | 7fa8d54 | 2015-05-06 00:55:13 +0100 | [diff] [blame] | 1210 | if (efx->type->sriov_flr) |
| 1211 | efx->type->sriov_flr(efx, |
| 1212 | MCDI_EVENT_FIELD(*event, FLR_VF)); |
Ben Hutchings | cd2d5b5 | 2012-02-14 00:48:07 +0000 | [diff] [blame] | 1213 | break; |
Stuart Hodgson | 7c236c4 | 2012-09-03 11:09:36 +0100 | [diff] [blame] | 1214 | case MCDI_EVENT_CODE_PTP_RX: |
| 1215 | case MCDI_EVENT_CODE_PTP_FAULT: |
| 1216 | case MCDI_EVENT_CODE_PTP_PPS: |
| 1217 | efx_ptp_event(efx, event); |
| 1218 | break; |
Jon Cooper | bd9a265 | 2013-11-18 12:54:41 +0000 | [diff] [blame] | 1219 | case MCDI_EVENT_CODE_PTP_TIME: |
| 1220 | efx_time_sync_event(channel, event); |
| 1221 | break; |
Ben Hutchings | 8127d66 | 2013-08-29 19:19:29 +0100 | [diff] [blame] | 1222 | case MCDI_EVENT_CODE_TX_FLUSH: |
| 1223 | case MCDI_EVENT_CODE_RX_FLUSH: |
| 1224 | /* Two flush events will be sent: one to the same event |
| 1225 | * queue as completions, and one to event queue 0. |
| 1226 | * In the latter case the {RX,TX}_FLUSH_TO_DRIVER |
| 1227 | * flag will be set, and we should ignore the event |
| 1228 | * because we want to wait for all completions. |
| 1229 | */ |
| 1230 | BUILD_BUG_ON(MCDI_EVENT_TX_FLUSH_TO_DRIVER_LBN != |
| 1231 | MCDI_EVENT_RX_FLUSH_TO_DRIVER_LBN); |
| 1232 | if (!MCDI_EVENT_FIELD(*event, TX_FLUSH_TO_DRIVER)) |
| 1233 | efx_ef10_handle_drain_event(efx); |
| 1234 | break; |
Alexandre Rames | 3de82b9 | 2013-06-13 11:36:15 +0100 | [diff] [blame] | 1235 | case MCDI_EVENT_CODE_TX_ERR: |
| 1236 | case MCDI_EVENT_CODE_RX_ERR: |
| 1237 | netif_err(efx, hw, efx->net_dev, |
| 1238 | "%s DMA error (event: "EFX_QWORD_FMT")\n", |
| 1239 | code == MCDI_EVENT_CODE_TX_ERR ? "TX" : "RX", |
| 1240 | EFX_QWORD_VAL(*event)); |
| 1241 | efx_schedule_reset(efx, RESET_TYPE_DMA_ERROR); |
| 1242 | break; |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 1243 | default: |
Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 1244 | netif_err(efx, hw, efx->net_dev, "Unknown MCDI event 0x%x\n", |
| 1245 | code); |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 1246 | } |
| 1247 | } |
| 1248 | |
| 1249 | /************************************************************************** |
| 1250 | * |
| 1251 | * Specific request functions |
| 1252 | * |
| 1253 | ************************************************************************** |
| 1254 | */ |
| 1255 | |
Ben Hutchings | e5f0fd2 | 2011-02-24 23:57:47 +0000 | [diff] [blame] | 1256 | void efx_mcdi_print_fwver(struct efx_nic *efx, char *buf, size_t len) |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 1257 | { |
Daniel Pieczko | 8d9f9dd | 2015-05-06 00:56:55 +0100 | [diff] [blame] | 1258 | MCDI_DECLARE_BUF(outbuf, MC_CMD_GET_VERSION_OUT_LEN); |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 1259 | size_t outlength; |
| 1260 | const __le16 *ver_words; |
Ben Hutchings | 8127d66 | 2013-08-29 19:19:29 +0100 | [diff] [blame] | 1261 | size_t offset; |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 1262 | int rc; |
| 1263 | |
| 1264 | BUILD_BUG_ON(MC_CMD_GET_VERSION_IN_LEN != 0); |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 1265 | rc = efx_mcdi_rpc(efx, MC_CMD_GET_VERSION, NULL, 0, |
| 1266 | outbuf, sizeof(outbuf), &outlength); |
| 1267 | if (rc) |
| 1268 | goto fail; |
Ben Hutchings | 05a9320 | 2011-12-20 00:44:06 +0000 | [diff] [blame] | 1269 | if (outlength < MC_CMD_GET_VERSION_OUT_LEN) { |
Ben Hutchings | 00bbb4a | 2010-04-28 09:27:14 +0000 | [diff] [blame] | 1270 | rc = -EIO; |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 1271 | goto fail; |
| 1272 | } |
| 1273 | |
| 1274 | ver_words = (__le16 *)MCDI_PTR(outbuf, GET_VERSION_OUT_VERSION); |
Ben Hutchings | 8127d66 | 2013-08-29 19:19:29 +0100 | [diff] [blame] | 1275 | offset = snprintf(buf, len, "%u.%u.%u.%u", |
| 1276 | le16_to_cpu(ver_words[0]), le16_to_cpu(ver_words[1]), |
| 1277 | le16_to_cpu(ver_words[2]), le16_to_cpu(ver_words[3])); |
| 1278 | |
| 1279 | /* EF10 may have multiple datapath firmware variants within a |
| 1280 | * single version. Report which variants are running. |
| 1281 | */ |
| 1282 | if (efx_nic_rev(efx) >= EFX_REV_HUNT_A0) { |
Daniel Pieczko | 8d9f9dd | 2015-05-06 00:56:55 +0100 | [diff] [blame] | 1283 | struct efx_ef10_nic_data *nic_data = efx->nic_data; |
| 1284 | |
| 1285 | offset += snprintf(buf + offset, len - offset, " rx%x tx%x", |
| 1286 | nic_data->rx_dpcpu_fw_id, |
| 1287 | nic_data->tx_dpcpu_fw_id); |
Ben Hutchings | 8127d66 | 2013-08-29 19:19:29 +0100 | [diff] [blame] | 1288 | |
| 1289 | /* It's theoretically possible for the string to exceed 31 |
| 1290 | * characters, though in practice the first three version |
| 1291 | * components are short enough that this doesn't happen. |
| 1292 | */ |
| 1293 | if (WARN_ON(offset >= len)) |
| 1294 | buf[0] = 0; |
| 1295 | } |
| 1296 | |
Ben Hutchings | e5f0fd2 | 2011-02-24 23:57:47 +0000 | [diff] [blame] | 1297 | return; |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 1298 | |
| 1299 | fail: |
Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 1300 | netif_err(efx, probe, efx->net_dev, "%s: failed rc=%d\n", __func__, rc); |
Ben Hutchings | e5f0fd2 | 2011-02-24 23:57:47 +0000 | [diff] [blame] | 1301 | buf[0] = 0; |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 1302 | } |
| 1303 | |
Ben Hutchings | 4c75b43a | 2013-08-29 19:04:03 +0100 | [diff] [blame] | 1304 | static int efx_mcdi_drv_attach(struct efx_nic *efx, bool driver_operating, |
| 1305 | bool *was_attached) |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 1306 | { |
Ben Hutchings | 59cfc47 | 2012-09-14 17:30:10 +0100 | [diff] [blame] | 1307 | MCDI_DECLARE_BUF(inbuf, MC_CMD_DRV_ATTACH_IN_LEN); |
Ben Hutchings | ecb1c9c | 2013-10-07 20:10:11 +0100 | [diff] [blame] | 1308 | MCDI_DECLARE_BUF(outbuf, MC_CMD_DRV_ATTACH_EXT_OUT_LEN); |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 1309 | size_t outlen; |
| 1310 | int rc; |
| 1311 | |
| 1312 | MCDI_SET_DWORD(inbuf, DRV_ATTACH_IN_NEW_STATE, |
| 1313 | driver_operating ? 1 : 0); |
| 1314 | MCDI_SET_DWORD(inbuf, DRV_ATTACH_IN_UPDATE, 1); |
Ben Hutchings | f2b0bef | 2013-08-20 20:35:50 +0100 | [diff] [blame] | 1315 | MCDI_SET_DWORD(inbuf, DRV_ATTACH_IN_FIRMWARE_ID, MC_CMD_FW_LOW_LATENCY); |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 1316 | |
Edward Cree | 267d9d7 | 2015-05-06 00:59:18 +0100 | [diff] [blame] | 1317 | rc = efx_mcdi_rpc_quiet(efx, MC_CMD_DRV_ATTACH, inbuf, sizeof(inbuf), |
| 1318 | outbuf, sizeof(outbuf), &outlen); |
| 1319 | /* If we're not the primary PF, trying to ATTACH with a FIRMWARE_ID |
| 1320 | * specified will fail with EPERM, and we have to tell the MC we don't |
| 1321 | * care what firmware we get. |
| 1322 | */ |
| 1323 | if (rc == -EPERM) { |
| 1324 | netif_dbg(efx, probe, efx->net_dev, |
| 1325 | "efx_mcdi_drv_attach with fw-variant setting failed EPERM, trying without it\n"); |
| 1326 | MCDI_SET_DWORD(inbuf, DRV_ATTACH_IN_FIRMWARE_ID, |
| 1327 | MC_CMD_FW_DONT_CARE); |
| 1328 | rc = efx_mcdi_rpc_quiet(efx, MC_CMD_DRV_ATTACH, inbuf, |
| 1329 | sizeof(inbuf), outbuf, sizeof(outbuf), |
| 1330 | &outlen); |
| 1331 | } |
| 1332 | if (rc) { |
| 1333 | efx_mcdi_display_error(efx, MC_CMD_DRV_ATTACH, sizeof(inbuf), |
| 1334 | outbuf, outlen, rc); |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 1335 | goto fail; |
Edward Cree | 267d9d7 | 2015-05-06 00:59:18 +0100 | [diff] [blame] | 1336 | } |
Ben Hutchings | 00bbb4a | 2010-04-28 09:27:14 +0000 | [diff] [blame] | 1337 | if (outlen < MC_CMD_DRV_ATTACH_OUT_LEN) { |
| 1338 | rc = -EIO; |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 1339 | goto fail; |
Ben Hutchings | 00bbb4a | 2010-04-28 09:27:14 +0000 | [diff] [blame] | 1340 | } |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 1341 | |
Ben Hutchings | 8349f7f | 2013-10-16 18:32:34 +0100 | [diff] [blame] | 1342 | if (driver_operating) { |
| 1343 | if (outlen >= MC_CMD_DRV_ATTACH_EXT_OUT_LEN) { |
| 1344 | efx->mcdi->fn_flags = |
| 1345 | MCDI_DWORD(outbuf, |
| 1346 | DRV_ATTACH_EXT_OUT_FUNC_FLAGS); |
| 1347 | } else { |
| 1348 | /* Synthesise flags for Siena */ |
| 1349 | efx->mcdi->fn_flags = |
| 1350 | 1 << MC_CMD_DRV_ATTACH_EXT_OUT_FLAG_LINKCTRL | |
| 1351 | 1 << MC_CMD_DRV_ATTACH_EXT_OUT_FLAG_TRUSTED | |
| 1352 | (efx_port_num(efx) == 0) << |
| 1353 | MC_CMD_DRV_ATTACH_EXT_OUT_FLAG_PRIMARY; |
| 1354 | } |
| 1355 | } |
| 1356 | |
Ben Hutchings | ecb1c9c | 2013-10-07 20:10:11 +0100 | [diff] [blame] | 1357 | /* We currently assume we have control of the external link |
| 1358 | * and are completely trusted by firmware. Abort probing |
| 1359 | * if that's not true for this function. |
| 1360 | */ |
Ben Hutchings | ecb1c9c | 2013-10-07 20:10:11 +0100 | [diff] [blame] | 1361 | |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 1362 | if (was_attached != NULL) |
| 1363 | *was_attached = MCDI_DWORD(outbuf, DRV_ATTACH_OUT_OLD_STATE); |
| 1364 | return 0; |
| 1365 | |
| 1366 | fail: |
Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 1367 | netif_err(efx, probe, efx->net_dev, "%s: failed rc=%d\n", __func__, rc); |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 1368 | return rc; |
| 1369 | } |
| 1370 | |
| 1371 | int efx_mcdi_get_board_cfg(struct efx_nic *efx, u8 *mac_address, |
Matthew Slattery | 6aa9c7f | 2010-07-14 15:36:19 +0100 | [diff] [blame] | 1372 | u16 *fw_subtype_list, u32 *capabilities) |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 1373 | { |
Ben Hutchings | 59cfc47 | 2012-09-14 17:30:10 +0100 | [diff] [blame] | 1374 | MCDI_DECLARE_BUF(outbuf, MC_CMD_GET_BOARD_CFG_OUT_LENMAX); |
Ben Hutchings | c5bb0e9 | 2012-09-14 17:31:33 +0100 | [diff] [blame] | 1375 | size_t outlen, i; |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 1376 | int port_num = efx_port_num(efx); |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 1377 | int rc; |
| 1378 | |
| 1379 | BUILD_BUG_ON(MC_CMD_GET_BOARD_CFG_IN_LEN != 0); |
Edward Cree | cd84ff4 | 2014-03-07 18:27:41 +0000 | [diff] [blame] | 1380 | /* we need __aligned(2) for ether_addr_copy */ |
| 1381 | BUILD_BUG_ON(MC_CMD_GET_BOARD_CFG_OUT_MAC_ADDR_BASE_PORT0_OFST & 1); |
| 1382 | BUILD_BUG_ON(MC_CMD_GET_BOARD_CFG_OUT_MAC_ADDR_BASE_PORT1_OFST & 1); |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 1383 | |
| 1384 | rc = efx_mcdi_rpc(efx, MC_CMD_GET_BOARD_CFG, NULL, 0, |
| 1385 | outbuf, sizeof(outbuf), &outlen); |
| 1386 | if (rc) |
| 1387 | goto fail; |
| 1388 | |
Ben Hutchings | 05a9320 | 2011-12-20 00:44:06 +0000 | [diff] [blame] | 1389 | if (outlen < MC_CMD_GET_BOARD_CFG_OUT_LENMIN) { |
Ben Hutchings | 00bbb4a | 2010-04-28 09:27:14 +0000 | [diff] [blame] | 1390 | rc = -EIO; |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 1391 | goto fail; |
| 1392 | } |
| 1393 | |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 1394 | if (mac_address) |
Edward Cree | cd84ff4 | 2014-03-07 18:27:41 +0000 | [diff] [blame] | 1395 | ether_addr_copy(mac_address, |
| 1396 | port_num ? |
| 1397 | MCDI_PTR(outbuf, GET_BOARD_CFG_OUT_MAC_ADDR_BASE_PORT1) : |
| 1398 | MCDI_PTR(outbuf, GET_BOARD_CFG_OUT_MAC_ADDR_BASE_PORT0)); |
Ben Hutchings | bfeed90 | 2012-09-07 00:58:10 +0100 | [diff] [blame] | 1399 | if (fw_subtype_list) { |
Ben Hutchings | bfeed90 | 2012-09-07 00:58:10 +0100 | [diff] [blame] | 1400 | for (i = 0; |
Ben Hutchings | c5bb0e9 | 2012-09-14 17:31:33 +0100 | [diff] [blame] | 1401 | i < MCDI_VAR_ARRAY_LEN(outlen, |
| 1402 | GET_BOARD_CFG_OUT_FW_SUBTYPE_LIST); |
| 1403 | i++) |
| 1404 | fw_subtype_list[i] = MCDI_ARRAY_WORD( |
| 1405 | outbuf, GET_BOARD_CFG_OUT_FW_SUBTYPE_LIST, i); |
| 1406 | for (; i < MC_CMD_GET_BOARD_CFG_OUT_FW_SUBTYPE_LIST_MAXNUM; i++) |
| 1407 | fw_subtype_list[i] = 0; |
Ben Hutchings | bfeed90 | 2012-09-07 00:58:10 +0100 | [diff] [blame] | 1408 | } |
Matthew Slattery | 6aa9c7f | 2010-07-14 15:36:19 +0100 | [diff] [blame] | 1409 | if (capabilities) { |
| 1410 | if (port_num) |
| 1411 | *capabilities = MCDI_DWORD(outbuf, |
| 1412 | GET_BOARD_CFG_OUT_CAPABILITIES_PORT1); |
| 1413 | else |
| 1414 | *capabilities = MCDI_DWORD(outbuf, |
| 1415 | GET_BOARD_CFG_OUT_CAPABILITIES_PORT0); |
| 1416 | } |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 1417 | |
| 1418 | return 0; |
| 1419 | |
| 1420 | fail: |
Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 1421 | netif_err(efx, hw, efx->net_dev, "%s: failed rc=%d len=%d\n", |
| 1422 | __func__, rc, (int)outlen); |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 1423 | |
| 1424 | return rc; |
| 1425 | } |
| 1426 | |
| 1427 | int efx_mcdi_log_ctrl(struct efx_nic *efx, bool evq, bool uart, u32 dest_evq) |
| 1428 | { |
Ben Hutchings | 59cfc47 | 2012-09-14 17:30:10 +0100 | [diff] [blame] | 1429 | MCDI_DECLARE_BUF(inbuf, MC_CMD_LOG_CTRL_IN_LEN); |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 1430 | u32 dest = 0; |
| 1431 | int rc; |
| 1432 | |
| 1433 | if (uart) |
| 1434 | dest |= MC_CMD_LOG_CTRL_IN_LOG_DEST_UART; |
| 1435 | if (evq) |
| 1436 | dest |= MC_CMD_LOG_CTRL_IN_LOG_DEST_EVQ; |
| 1437 | |
| 1438 | MCDI_SET_DWORD(inbuf, LOG_CTRL_IN_LOG_DEST, dest); |
| 1439 | MCDI_SET_DWORD(inbuf, LOG_CTRL_IN_LOG_DEST_EVQ, dest_evq); |
| 1440 | |
| 1441 | BUILD_BUG_ON(MC_CMD_LOG_CTRL_OUT_LEN != 0); |
| 1442 | |
| 1443 | rc = efx_mcdi_rpc(efx, MC_CMD_LOG_CTRL, inbuf, sizeof(inbuf), |
| 1444 | NULL, 0, NULL); |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 1445 | return rc; |
| 1446 | } |
| 1447 | |
| 1448 | int efx_mcdi_nvram_types(struct efx_nic *efx, u32 *nvram_types_out) |
| 1449 | { |
Ben Hutchings | 59cfc47 | 2012-09-14 17:30:10 +0100 | [diff] [blame] | 1450 | MCDI_DECLARE_BUF(outbuf, MC_CMD_NVRAM_TYPES_OUT_LEN); |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 1451 | size_t outlen; |
| 1452 | int rc; |
| 1453 | |
| 1454 | BUILD_BUG_ON(MC_CMD_NVRAM_TYPES_IN_LEN != 0); |
| 1455 | |
| 1456 | rc = efx_mcdi_rpc(efx, MC_CMD_NVRAM_TYPES, NULL, 0, |
| 1457 | outbuf, sizeof(outbuf), &outlen); |
| 1458 | if (rc) |
| 1459 | goto fail; |
Ben Hutchings | 00bbb4a | 2010-04-28 09:27:14 +0000 | [diff] [blame] | 1460 | if (outlen < MC_CMD_NVRAM_TYPES_OUT_LEN) { |
| 1461 | rc = -EIO; |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 1462 | goto fail; |
Ben Hutchings | 00bbb4a | 2010-04-28 09:27:14 +0000 | [diff] [blame] | 1463 | } |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 1464 | |
| 1465 | *nvram_types_out = MCDI_DWORD(outbuf, NVRAM_TYPES_OUT_TYPES); |
| 1466 | return 0; |
| 1467 | |
| 1468 | fail: |
Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 1469 | netif_err(efx, hw, efx->net_dev, "%s: failed rc=%d\n", |
| 1470 | __func__, rc); |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 1471 | return rc; |
| 1472 | } |
| 1473 | |
| 1474 | int efx_mcdi_nvram_info(struct efx_nic *efx, unsigned int type, |
| 1475 | size_t *size_out, size_t *erase_size_out, |
| 1476 | bool *protected_out) |
| 1477 | { |
Ben Hutchings | 59cfc47 | 2012-09-14 17:30:10 +0100 | [diff] [blame] | 1478 | MCDI_DECLARE_BUF(inbuf, MC_CMD_NVRAM_INFO_IN_LEN); |
| 1479 | MCDI_DECLARE_BUF(outbuf, MC_CMD_NVRAM_INFO_OUT_LEN); |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 1480 | size_t outlen; |
| 1481 | int rc; |
| 1482 | |
| 1483 | MCDI_SET_DWORD(inbuf, NVRAM_INFO_IN_TYPE, type); |
| 1484 | |
| 1485 | rc = efx_mcdi_rpc(efx, MC_CMD_NVRAM_INFO, inbuf, sizeof(inbuf), |
| 1486 | outbuf, sizeof(outbuf), &outlen); |
| 1487 | if (rc) |
| 1488 | goto fail; |
Ben Hutchings | 00bbb4a | 2010-04-28 09:27:14 +0000 | [diff] [blame] | 1489 | if (outlen < MC_CMD_NVRAM_INFO_OUT_LEN) { |
| 1490 | rc = -EIO; |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 1491 | goto fail; |
Ben Hutchings | 00bbb4a | 2010-04-28 09:27:14 +0000 | [diff] [blame] | 1492 | } |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 1493 | |
| 1494 | *size_out = MCDI_DWORD(outbuf, NVRAM_INFO_OUT_SIZE); |
| 1495 | *erase_size_out = MCDI_DWORD(outbuf, NVRAM_INFO_OUT_ERASESIZE); |
| 1496 | *protected_out = !!(MCDI_DWORD(outbuf, NVRAM_INFO_OUT_FLAGS) & |
Ben Hutchings | 05a9320 | 2011-12-20 00:44:06 +0000 | [diff] [blame] | 1497 | (1 << MC_CMD_NVRAM_INFO_OUT_PROTECTED_LBN)); |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 1498 | return 0; |
| 1499 | |
| 1500 | fail: |
Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 1501 | netif_err(efx, hw, efx->net_dev, "%s: failed rc=%d\n", __func__, rc); |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 1502 | return rc; |
| 1503 | } |
| 1504 | |
Ben Hutchings | 2e80340 | 2010-02-03 09:31:01 +0000 | [diff] [blame] | 1505 | static int efx_mcdi_nvram_test(struct efx_nic *efx, unsigned int type) |
| 1506 | { |
Ben Hutchings | 59cfc47 | 2012-09-14 17:30:10 +0100 | [diff] [blame] | 1507 | MCDI_DECLARE_BUF(inbuf, MC_CMD_NVRAM_TEST_IN_LEN); |
| 1508 | MCDI_DECLARE_BUF(outbuf, MC_CMD_NVRAM_TEST_OUT_LEN); |
Ben Hutchings | 2e80340 | 2010-02-03 09:31:01 +0000 | [diff] [blame] | 1509 | int rc; |
| 1510 | |
| 1511 | MCDI_SET_DWORD(inbuf, NVRAM_TEST_IN_TYPE, type); |
| 1512 | |
| 1513 | rc = efx_mcdi_rpc(efx, MC_CMD_NVRAM_TEST, inbuf, sizeof(inbuf), |
| 1514 | outbuf, sizeof(outbuf), NULL); |
| 1515 | if (rc) |
| 1516 | return rc; |
| 1517 | |
| 1518 | switch (MCDI_DWORD(outbuf, NVRAM_TEST_OUT_RESULT)) { |
| 1519 | case MC_CMD_NVRAM_TEST_PASS: |
| 1520 | case MC_CMD_NVRAM_TEST_NOTSUPP: |
| 1521 | return 0; |
| 1522 | default: |
| 1523 | return -EIO; |
| 1524 | } |
| 1525 | } |
| 1526 | |
| 1527 | int efx_mcdi_nvram_test_all(struct efx_nic *efx) |
| 1528 | { |
| 1529 | u32 nvram_types; |
| 1530 | unsigned int type; |
| 1531 | int rc; |
| 1532 | |
| 1533 | rc = efx_mcdi_nvram_types(efx, &nvram_types); |
| 1534 | if (rc) |
Ben Hutchings | b548a98 | 2010-04-28 09:28:36 +0000 | [diff] [blame] | 1535 | goto fail1; |
Ben Hutchings | 2e80340 | 2010-02-03 09:31:01 +0000 | [diff] [blame] | 1536 | |
| 1537 | type = 0; |
| 1538 | while (nvram_types != 0) { |
| 1539 | if (nvram_types & 1) { |
| 1540 | rc = efx_mcdi_nvram_test(efx, type); |
| 1541 | if (rc) |
Ben Hutchings | b548a98 | 2010-04-28 09:28:36 +0000 | [diff] [blame] | 1542 | goto fail2; |
Ben Hutchings | 2e80340 | 2010-02-03 09:31:01 +0000 | [diff] [blame] | 1543 | } |
| 1544 | type++; |
| 1545 | nvram_types >>= 1; |
| 1546 | } |
| 1547 | |
| 1548 | return 0; |
Ben Hutchings | b548a98 | 2010-04-28 09:28:36 +0000 | [diff] [blame] | 1549 | |
| 1550 | fail2: |
Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 1551 | netif_err(efx, hw, efx->net_dev, "%s: failed type=%u\n", |
| 1552 | __func__, type); |
Ben Hutchings | b548a98 | 2010-04-28 09:28:36 +0000 | [diff] [blame] | 1553 | fail1: |
Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 1554 | netif_err(efx, hw, efx->net_dev, "%s: failed rc=%d\n", __func__, rc); |
Ben Hutchings | b548a98 | 2010-04-28 09:28:36 +0000 | [diff] [blame] | 1555 | return rc; |
Ben Hutchings | 2e80340 | 2010-02-03 09:31:01 +0000 | [diff] [blame] | 1556 | } |
| 1557 | |
Edward Cree | 267d9d7 | 2015-05-06 00:59:18 +0100 | [diff] [blame] | 1558 | /* Returns 1 if an assertion was read, 0 if no assertion had fired, |
| 1559 | * negative on error. |
| 1560 | */ |
Steve Hodgson | 8b2103a | 2010-02-03 09:30:17 +0000 | [diff] [blame] | 1561 | static int efx_mcdi_read_assertion(struct efx_nic *efx) |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 1562 | { |
Ben Hutchings | 59cfc47 | 2012-09-14 17:30:10 +0100 | [diff] [blame] | 1563 | MCDI_DECLARE_BUF(inbuf, MC_CMD_GET_ASSERTS_IN_LEN); |
Jon Cooper | aa09a3d | 2015-05-20 11:10:41 +0100 | [diff] [blame] | 1564 | MCDI_DECLARE_BUF(outbuf, MC_CMD_GET_ASSERTS_OUT_LEN); |
Ben Hutchings | c5bb0e9 | 2012-09-14 17:31:33 +0100 | [diff] [blame] | 1565 | unsigned int flags, index; |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 1566 | const char *reason; |
| 1567 | size_t outlen; |
| 1568 | int retry; |
| 1569 | int rc; |
| 1570 | |
Steve Hodgson | 8b2103a | 2010-02-03 09:30:17 +0000 | [diff] [blame] | 1571 | /* Attempt to read any stored assertion state before we reboot |
| 1572 | * the mcfw out of the assertion handler. Retry twice, once |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 1573 | * because a boot-time assertion might cause this command to fail |
| 1574 | * with EINTR. And once again because GET_ASSERTS can race with |
| 1575 | * MC_CMD_REBOOT running on the other port. */ |
| 1576 | retry = 2; |
| 1577 | do { |
Steve Hodgson | 8b2103a | 2010-02-03 09:30:17 +0000 | [diff] [blame] | 1578 | MCDI_SET_DWORD(inbuf, GET_ASSERTS_IN_CLEAR, 1); |
Edward Cree | 1e0b812 | 2013-05-31 18:36:12 +0100 | [diff] [blame] | 1579 | rc = efx_mcdi_rpc_quiet(efx, MC_CMD_GET_ASSERTS, |
| 1580 | inbuf, MC_CMD_GET_ASSERTS_IN_LEN, |
| 1581 | outbuf, sizeof(outbuf), &outlen); |
Edward Cree | 267d9d7 | 2015-05-06 00:59:18 +0100 | [diff] [blame] | 1582 | if (rc == -EPERM) |
| 1583 | return 0; |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 1584 | } while ((rc == -EINTR || rc == -EIO) && retry-- > 0); |
| 1585 | |
Edward Cree | 1e0b812 | 2013-05-31 18:36:12 +0100 | [diff] [blame] | 1586 | if (rc) { |
| 1587 | efx_mcdi_display_error(efx, MC_CMD_GET_ASSERTS, |
| 1588 | MC_CMD_GET_ASSERTS_IN_LEN, outbuf, |
| 1589 | outlen, rc); |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 1590 | return rc; |
Edward Cree | 1e0b812 | 2013-05-31 18:36:12 +0100 | [diff] [blame] | 1591 | } |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 1592 | if (outlen < MC_CMD_GET_ASSERTS_OUT_LEN) |
Ben Hutchings | 00bbb4a | 2010-04-28 09:27:14 +0000 | [diff] [blame] | 1593 | return -EIO; |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 1594 | |
Steve Hodgson | 8b2103a | 2010-02-03 09:30:17 +0000 | [diff] [blame] | 1595 | /* Print out any recorded assertion state */ |
| 1596 | flags = MCDI_DWORD(outbuf, GET_ASSERTS_OUT_GLOBAL_FLAGS); |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 1597 | if (flags == MC_CMD_GET_ASSERTS_FLAGS_NO_FAILS) |
| 1598 | return 0; |
| 1599 | |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 1600 | reason = (flags == MC_CMD_GET_ASSERTS_FLAGS_SYS_FAIL) |
| 1601 | ? "system-level assertion" |
| 1602 | : (flags == MC_CMD_GET_ASSERTS_FLAGS_THR_FAIL) |
| 1603 | ? "thread-level assertion" |
| 1604 | : (flags == MC_CMD_GET_ASSERTS_FLAGS_WDOG_FIRED) |
| 1605 | ? "watchdog reset" |
| 1606 | : "unknown assertion"; |
Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 1607 | netif_err(efx, hw, efx->net_dev, |
| 1608 | "MCPU %s at PC = 0x%.8x in thread 0x%.8x\n", reason, |
| 1609 | MCDI_DWORD(outbuf, GET_ASSERTS_OUT_SAVED_PC_OFFS), |
| 1610 | MCDI_DWORD(outbuf, GET_ASSERTS_OUT_THREAD_OFFS)); |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 1611 | |
| 1612 | /* Print out the registers */ |
Ben Hutchings | c5bb0e9 | 2012-09-14 17:31:33 +0100 | [diff] [blame] | 1613 | for (index = 0; |
| 1614 | index < MC_CMD_GET_ASSERTS_OUT_GP_REGS_OFFS_NUM; |
| 1615 | index++) |
| 1616 | netif_err(efx, hw, efx->net_dev, "R%.2d (?): 0x%.8x\n", |
| 1617 | 1 + index, |
| 1618 | MCDI_ARRAY_DWORD(outbuf, GET_ASSERTS_OUT_GP_REGS_OFFS, |
| 1619 | index)); |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 1620 | |
Edward Cree | 267d9d7 | 2015-05-06 00:59:18 +0100 | [diff] [blame] | 1621 | return 1; |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 1622 | } |
| 1623 | |
Edward Cree | 267d9d7 | 2015-05-06 00:59:18 +0100 | [diff] [blame] | 1624 | static int efx_mcdi_exit_assertion(struct efx_nic *efx) |
Steve Hodgson | 8b2103a | 2010-02-03 09:30:17 +0000 | [diff] [blame] | 1625 | { |
Ben Hutchings | 59cfc47 | 2012-09-14 17:30:10 +0100 | [diff] [blame] | 1626 | MCDI_DECLARE_BUF(inbuf, MC_CMD_REBOOT_IN_LEN); |
Edward Cree | 267d9d7 | 2015-05-06 00:59:18 +0100 | [diff] [blame] | 1627 | int rc; |
Steve Hodgson | 8b2103a | 2010-02-03 09:30:17 +0000 | [diff] [blame] | 1628 | |
Ben Hutchings | 0f1e54a | 2012-07-02 23:37:40 +0100 | [diff] [blame] | 1629 | /* If the MC is running debug firmware, it might now be |
| 1630 | * waiting for a debugger to attach, but we just want it to |
| 1631 | * reboot. We set a flag that makes the command a no-op if it |
Edward Cree | 267d9d7 | 2015-05-06 00:59:18 +0100 | [diff] [blame] | 1632 | * has already done so. |
| 1633 | * The MCDI will thus return either 0 or -EIO. |
Ben Hutchings | 0f1e54a | 2012-07-02 23:37:40 +0100 | [diff] [blame] | 1634 | */ |
Steve Hodgson | 8b2103a | 2010-02-03 09:30:17 +0000 | [diff] [blame] | 1635 | BUILD_BUG_ON(MC_CMD_REBOOT_OUT_LEN != 0); |
| 1636 | MCDI_SET_DWORD(inbuf, REBOOT_IN_FLAGS, |
| 1637 | MC_CMD_REBOOT_FLAGS_AFTER_ASSERTION); |
Edward Cree | 267d9d7 | 2015-05-06 00:59:18 +0100 | [diff] [blame] | 1638 | rc = efx_mcdi_rpc_quiet(efx, MC_CMD_REBOOT, inbuf, MC_CMD_REBOOT_IN_LEN, |
| 1639 | NULL, 0, NULL); |
| 1640 | if (rc == -EIO) |
| 1641 | rc = 0; |
| 1642 | if (rc) |
| 1643 | efx_mcdi_display_error(efx, MC_CMD_REBOOT, MC_CMD_REBOOT_IN_LEN, |
| 1644 | NULL, 0, rc); |
| 1645 | return rc; |
Steve Hodgson | 8b2103a | 2010-02-03 09:30:17 +0000 | [diff] [blame] | 1646 | } |
| 1647 | |
| 1648 | int efx_mcdi_handle_assertion(struct efx_nic *efx) |
| 1649 | { |
| 1650 | int rc; |
| 1651 | |
| 1652 | rc = efx_mcdi_read_assertion(efx); |
Edward Cree | 267d9d7 | 2015-05-06 00:59:18 +0100 | [diff] [blame] | 1653 | if (rc <= 0) |
Steve Hodgson | 8b2103a | 2010-02-03 09:30:17 +0000 | [diff] [blame] | 1654 | return rc; |
| 1655 | |
Edward Cree | 267d9d7 | 2015-05-06 00:59:18 +0100 | [diff] [blame] | 1656 | return efx_mcdi_exit_assertion(efx); |
Steve Hodgson | 8b2103a | 2010-02-03 09:30:17 +0000 | [diff] [blame] | 1657 | } |
| 1658 | |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 1659 | void efx_mcdi_set_id_led(struct efx_nic *efx, enum efx_led_mode mode) |
| 1660 | { |
Ben Hutchings | 59cfc47 | 2012-09-14 17:30:10 +0100 | [diff] [blame] | 1661 | MCDI_DECLARE_BUF(inbuf, MC_CMD_SET_ID_LED_IN_LEN); |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 1662 | int rc; |
| 1663 | |
| 1664 | BUILD_BUG_ON(EFX_LED_OFF != MC_CMD_LED_OFF); |
| 1665 | BUILD_BUG_ON(EFX_LED_ON != MC_CMD_LED_ON); |
| 1666 | BUILD_BUG_ON(EFX_LED_DEFAULT != MC_CMD_LED_DEFAULT); |
| 1667 | |
| 1668 | BUILD_BUG_ON(MC_CMD_SET_ID_LED_OUT_LEN != 0); |
| 1669 | |
| 1670 | MCDI_SET_DWORD(inbuf, SET_ID_LED_IN_STATE, mode); |
| 1671 | |
| 1672 | rc = efx_mcdi_rpc(efx, MC_CMD_SET_ID_LED, inbuf, sizeof(inbuf), |
| 1673 | NULL, 0, NULL); |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 1674 | } |
| 1675 | |
Jon Cooper | 3e33626 | 2014-01-17 19:48:06 +0000 | [diff] [blame] | 1676 | static int efx_mcdi_reset_func(struct efx_nic *efx) |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 1677 | { |
Jon Cooper | 3e33626 | 2014-01-17 19:48:06 +0000 | [diff] [blame] | 1678 | MCDI_DECLARE_BUF(inbuf, MC_CMD_ENTITY_RESET_IN_LEN); |
| 1679 | int rc; |
| 1680 | |
| 1681 | BUILD_BUG_ON(MC_CMD_ENTITY_RESET_OUT_LEN != 0); |
| 1682 | MCDI_POPULATE_DWORD_1(inbuf, ENTITY_RESET_IN_FLAG, |
| 1683 | ENTITY_RESET_IN_FUNCTION_RESOURCE_RESET, 1); |
| 1684 | rc = efx_mcdi_rpc(efx, MC_CMD_ENTITY_RESET, inbuf, sizeof(inbuf), |
| 1685 | NULL, 0, NULL); |
| 1686 | return rc; |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 1687 | } |
| 1688 | |
Ben Hutchings | 6bff861 | 2012-09-18 02:33:52 +0100 | [diff] [blame] | 1689 | static int efx_mcdi_reset_mc(struct efx_nic *efx) |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 1690 | { |
Ben Hutchings | 59cfc47 | 2012-09-14 17:30:10 +0100 | [diff] [blame] | 1691 | MCDI_DECLARE_BUF(inbuf, MC_CMD_REBOOT_IN_LEN); |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 1692 | int rc; |
| 1693 | |
| 1694 | BUILD_BUG_ON(MC_CMD_REBOOT_OUT_LEN != 0); |
| 1695 | MCDI_SET_DWORD(inbuf, REBOOT_IN_FLAGS, 0); |
| 1696 | rc = efx_mcdi_rpc(efx, MC_CMD_REBOOT, inbuf, sizeof(inbuf), |
| 1697 | NULL, 0, NULL); |
| 1698 | /* White is black, and up is down */ |
| 1699 | if (rc == -EIO) |
| 1700 | return 0; |
| 1701 | if (rc == 0) |
| 1702 | rc = -EIO; |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 1703 | return rc; |
| 1704 | } |
| 1705 | |
Ben Hutchings | 6bff861 | 2012-09-18 02:33:52 +0100 | [diff] [blame] | 1706 | enum reset_type efx_mcdi_map_reset_reason(enum reset_type reason) |
| 1707 | { |
| 1708 | return RESET_TYPE_RECOVER_OR_ALL; |
| 1709 | } |
| 1710 | |
| 1711 | int efx_mcdi_reset(struct efx_nic *efx, enum reset_type method) |
| 1712 | { |
| 1713 | int rc; |
| 1714 | |
Edward Cree | e283546 | 2014-04-16 19:27:48 +0100 | [diff] [blame] | 1715 | /* If MCDI is down, we can't handle_assertion */ |
| 1716 | if (method == RESET_TYPE_MCDI_TIMEOUT) { |
| 1717 | rc = pci_reset_function(efx->pci_dev); |
| 1718 | if (rc) |
| 1719 | return rc; |
| 1720 | /* Re-enable polled MCDI completion */ |
| 1721 | if (efx->mcdi) { |
| 1722 | struct efx_mcdi_iface *mcdi = efx_mcdi(efx); |
| 1723 | mcdi->mode = MCDI_MODE_POLL; |
| 1724 | } |
| 1725 | return 0; |
| 1726 | } |
| 1727 | |
Ben Hutchings | 6bff861 | 2012-09-18 02:33:52 +0100 | [diff] [blame] | 1728 | /* Recover from a failed assertion pre-reset */ |
| 1729 | rc = efx_mcdi_handle_assertion(efx); |
| 1730 | if (rc) |
| 1731 | return rc; |
| 1732 | |
Jon Cooper | 087e902 | 2015-05-20 11:11:35 +0100 | [diff] [blame] | 1733 | if (method == RESET_TYPE_DATAPATH) |
| 1734 | return 0; |
| 1735 | else if (method == RESET_TYPE_WORLD) |
Ben Hutchings | 6bff861 | 2012-09-18 02:33:52 +0100 | [diff] [blame] | 1736 | return efx_mcdi_reset_mc(efx); |
| 1737 | else |
Jon Cooper | 3e33626 | 2014-01-17 19:48:06 +0000 | [diff] [blame] | 1738 | return efx_mcdi_reset_func(efx); |
Ben Hutchings | 6bff861 | 2012-09-18 02:33:52 +0100 | [diff] [blame] | 1739 | } |
| 1740 | |
stephen hemminger | d215697 | 2010-10-18 05:27:31 +0000 | [diff] [blame] | 1741 | static int efx_mcdi_wol_filter_set(struct efx_nic *efx, u32 type, |
| 1742 | const u8 *mac, int *id_out) |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 1743 | { |
Ben Hutchings | 59cfc47 | 2012-09-14 17:30:10 +0100 | [diff] [blame] | 1744 | MCDI_DECLARE_BUF(inbuf, MC_CMD_WOL_FILTER_SET_IN_LEN); |
| 1745 | MCDI_DECLARE_BUF(outbuf, MC_CMD_WOL_FILTER_SET_OUT_LEN); |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 1746 | size_t outlen; |
| 1747 | int rc; |
| 1748 | |
| 1749 | MCDI_SET_DWORD(inbuf, WOL_FILTER_SET_IN_WOL_TYPE, type); |
| 1750 | MCDI_SET_DWORD(inbuf, WOL_FILTER_SET_IN_FILTER_MODE, |
| 1751 | MC_CMD_FILTER_MODE_SIMPLE); |
Edward Cree | cd84ff4 | 2014-03-07 18:27:41 +0000 | [diff] [blame] | 1752 | ether_addr_copy(MCDI_PTR(inbuf, WOL_FILTER_SET_IN_MAGIC_MAC), mac); |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 1753 | |
| 1754 | rc = efx_mcdi_rpc(efx, MC_CMD_WOL_FILTER_SET, inbuf, sizeof(inbuf), |
| 1755 | outbuf, sizeof(outbuf), &outlen); |
| 1756 | if (rc) |
| 1757 | goto fail; |
| 1758 | |
| 1759 | if (outlen < MC_CMD_WOL_FILTER_SET_OUT_LEN) { |
Ben Hutchings | 00bbb4a | 2010-04-28 09:27:14 +0000 | [diff] [blame] | 1760 | rc = -EIO; |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 1761 | goto fail; |
| 1762 | } |
| 1763 | |
| 1764 | *id_out = (int)MCDI_DWORD(outbuf, WOL_FILTER_SET_OUT_FILTER_ID); |
| 1765 | |
| 1766 | return 0; |
| 1767 | |
| 1768 | fail: |
| 1769 | *id_out = -1; |
Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 1770 | netif_err(efx, hw, efx->net_dev, "%s: failed rc=%d\n", __func__, rc); |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 1771 | return rc; |
| 1772 | |
| 1773 | } |
| 1774 | |
| 1775 | |
| 1776 | int |
| 1777 | efx_mcdi_wol_filter_set_magic(struct efx_nic *efx, const u8 *mac, int *id_out) |
| 1778 | { |
| 1779 | return efx_mcdi_wol_filter_set(efx, MC_CMD_WOL_TYPE_MAGIC, mac, id_out); |
| 1780 | } |
| 1781 | |
| 1782 | |
| 1783 | int efx_mcdi_wol_filter_get_magic(struct efx_nic *efx, int *id_out) |
| 1784 | { |
Ben Hutchings | 59cfc47 | 2012-09-14 17:30:10 +0100 | [diff] [blame] | 1785 | MCDI_DECLARE_BUF(outbuf, MC_CMD_WOL_FILTER_GET_OUT_LEN); |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 1786 | size_t outlen; |
| 1787 | int rc; |
| 1788 | |
| 1789 | rc = efx_mcdi_rpc(efx, MC_CMD_WOL_FILTER_GET, NULL, 0, |
| 1790 | outbuf, sizeof(outbuf), &outlen); |
| 1791 | if (rc) |
| 1792 | goto fail; |
| 1793 | |
| 1794 | if (outlen < MC_CMD_WOL_FILTER_GET_OUT_LEN) { |
Ben Hutchings | 00bbb4a | 2010-04-28 09:27:14 +0000 | [diff] [blame] | 1795 | rc = -EIO; |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 1796 | goto fail; |
| 1797 | } |
| 1798 | |
| 1799 | *id_out = (int)MCDI_DWORD(outbuf, WOL_FILTER_GET_OUT_FILTER_ID); |
| 1800 | |
| 1801 | return 0; |
| 1802 | |
| 1803 | fail: |
| 1804 | *id_out = -1; |
Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 1805 | netif_err(efx, hw, efx->net_dev, "%s: failed rc=%d\n", __func__, rc); |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 1806 | return rc; |
| 1807 | } |
| 1808 | |
| 1809 | |
| 1810 | int efx_mcdi_wol_filter_remove(struct efx_nic *efx, int id) |
| 1811 | { |
Ben Hutchings | 59cfc47 | 2012-09-14 17:30:10 +0100 | [diff] [blame] | 1812 | MCDI_DECLARE_BUF(inbuf, MC_CMD_WOL_FILTER_REMOVE_IN_LEN); |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 1813 | int rc; |
| 1814 | |
| 1815 | MCDI_SET_DWORD(inbuf, WOL_FILTER_REMOVE_IN_FILTER_ID, (u32)id); |
| 1816 | |
| 1817 | rc = efx_mcdi_rpc(efx, MC_CMD_WOL_FILTER_REMOVE, inbuf, sizeof(inbuf), |
| 1818 | NULL, 0, NULL); |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 1819 | return rc; |
| 1820 | } |
| 1821 | |
Ben Hutchings | cd2d5b5 | 2012-02-14 00:48:07 +0000 | [diff] [blame] | 1822 | int efx_mcdi_flush_rxqs(struct efx_nic *efx) |
| 1823 | { |
| 1824 | struct efx_channel *channel; |
| 1825 | struct efx_rx_queue *rx_queue; |
Ben Hutchings | c5bb0e9 | 2012-09-14 17:31:33 +0100 | [diff] [blame] | 1826 | MCDI_DECLARE_BUF(inbuf, |
| 1827 | MC_CMD_FLUSH_RX_QUEUES_IN_LEN(EFX_MAX_CHANNELS)); |
Ben Hutchings | cd2d5b5 | 2012-02-14 00:48:07 +0000 | [diff] [blame] | 1828 | int rc, count; |
| 1829 | |
Ben Hutchings | 4507837 | 2012-09-19 02:53:34 +0100 | [diff] [blame] | 1830 | BUILD_BUG_ON(EFX_MAX_CHANNELS > |
| 1831 | MC_CMD_FLUSH_RX_QUEUES_IN_QID_OFST_MAXNUM); |
| 1832 | |
Ben Hutchings | cd2d5b5 | 2012-02-14 00:48:07 +0000 | [diff] [blame] | 1833 | count = 0; |
| 1834 | efx_for_each_channel(channel, efx) { |
| 1835 | efx_for_each_channel_rx_queue(rx_queue, channel) { |
| 1836 | if (rx_queue->flush_pending) { |
| 1837 | rx_queue->flush_pending = false; |
| 1838 | atomic_dec(&efx->rxq_flush_pending); |
Ben Hutchings | c5bb0e9 | 2012-09-14 17:31:33 +0100 | [diff] [blame] | 1839 | MCDI_SET_ARRAY_DWORD( |
| 1840 | inbuf, FLUSH_RX_QUEUES_IN_QID_OFST, |
| 1841 | count, efx_rx_queue_index(rx_queue)); |
| 1842 | count++; |
Ben Hutchings | cd2d5b5 | 2012-02-14 00:48:07 +0000 | [diff] [blame] | 1843 | } |
| 1844 | } |
| 1845 | } |
| 1846 | |
Ben Hutchings | c5bb0e9 | 2012-09-14 17:31:33 +0100 | [diff] [blame] | 1847 | rc = efx_mcdi_rpc(efx, MC_CMD_FLUSH_RX_QUEUES, inbuf, |
| 1848 | MC_CMD_FLUSH_RX_QUEUES_IN_LEN(count), NULL, 0, NULL); |
Ben Hutchings | bbec969 | 2012-09-11 18:25:13 +0100 | [diff] [blame] | 1849 | WARN_ON(rc < 0); |
Ben Hutchings | cd2d5b5 | 2012-02-14 00:48:07 +0000 | [diff] [blame] | 1850 | |
Ben Hutchings | cd2d5b5 | 2012-02-14 00:48:07 +0000 | [diff] [blame] | 1851 | return rc; |
| 1852 | } |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 1853 | |
| 1854 | int efx_mcdi_wol_filter_reset(struct efx_nic *efx) |
| 1855 | { |
| 1856 | int rc; |
| 1857 | |
| 1858 | rc = efx_mcdi_rpc(efx, MC_CMD_WOL_FILTER_RESET, NULL, 0, NULL, 0, NULL); |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 1859 | return rc; |
| 1860 | } |
| 1861 | |
Daniel Pieczko | 34ccfe6 | 2015-07-21 15:09:43 +0100 | [diff] [blame] | 1862 | int efx_mcdi_set_workaround(struct efx_nic *efx, u32 type, bool enabled, |
| 1863 | unsigned int *flags) |
Ben Hutchings | 8127d66 | 2013-08-29 19:19:29 +0100 | [diff] [blame] | 1864 | { |
| 1865 | MCDI_DECLARE_BUF(inbuf, MC_CMD_WORKAROUND_IN_LEN); |
Daniel Pieczko | 34ccfe6 | 2015-07-21 15:09:43 +0100 | [diff] [blame] | 1866 | MCDI_DECLARE_BUF(outbuf, MC_CMD_WORKAROUND_EXT_OUT_LEN); |
| 1867 | size_t outlen; |
| 1868 | int rc; |
Ben Hutchings | 8127d66 | 2013-08-29 19:19:29 +0100 | [diff] [blame] | 1869 | |
| 1870 | BUILD_BUG_ON(MC_CMD_WORKAROUND_OUT_LEN != 0); |
| 1871 | MCDI_SET_DWORD(inbuf, WORKAROUND_IN_TYPE, type); |
| 1872 | MCDI_SET_DWORD(inbuf, WORKAROUND_IN_ENABLED, enabled); |
Daniel Pieczko | 34ccfe6 | 2015-07-21 15:09:43 +0100 | [diff] [blame] | 1873 | rc = efx_mcdi_rpc(efx, MC_CMD_WORKAROUND, inbuf, sizeof(inbuf), |
| 1874 | outbuf, sizeof(outbuf), &outlen); |
| 1875 | if (rc) |
| 1876 | return rc; |
| 1877 | |
| 1878 | if (!flags) |
| 1879 | return 0; |
| 1880 | |
| 1881 | if (outlen >= MC_CMD_WORKAROUND_EXT_OUT_LEN) |
| 1882 | *flags = MCDI_DWORD(outbuf, WORKAROUND_EXT_OUT_FLAGS); |
| 1883 | else |
| 1884 | *flags = 0; |
| 1885 | |
| 1886 | return 0; |
Ben Hutchings | 8127d66 | 2013-08-29 19:19:29 +0100 | [diff] [blame] | 1887 | } |
| 1888 | |
Edward Cree | 267d9d7 | 2015-05-06 00:59:18 +0100 | [diff] [blame] | 1889 | int efx_mcdi_get_workarounds(struct efx_nic *efx, unsigned int *impl_out, |
| 1890 | unsigned int *enabled_out) |
| 1891 | { |
Jon Cooper | aa09a3d | 2015-05-20 11:10:41 +0100 | [diff] [blame] | 1892 | MCDI_DECLARE_BUF(outbuf, MC_CMD_GET_WORKAROUNDS_OUT_LEN); |
Edward Cree | 267d9d7 | 2015-05-06 00:59:18 +0100 | [diff] [blame] | 1893 | size_t outlen; |
| 1894 | int rc; |
| 1895 | |
| 1896 | rc = efx_mcdi_rpc(efx, MC_CMD_GET_WORKAROUNDS, NULL, 0, |
| 1897 | outbuf, sizeof(outbuf), &outlen); |
| 1898 | if (rc) |
| 1899 | goto fail; |
| 1900 | |
| 1901 | if (outlen < MC_CMD_GET_WORKAROUNDS_OUT_LEN) { |
| 1902 | rc = -EIO; |
| 1903 | goto fail; |
| 1904 | } |
| 1905 | |
| 1906 | if (impl_out) |
| 1907 | *impl_out = MCDI_DWORD(outbuf, GET_WORKAROUNDS_OUT_IMPLEMENTED); |
| 1908 | |
| 1909 | if (enabled_out) |
| 1910 | *enabled_out = MCDI_DWORD(outbuf, GET_WORKAROUNDS_OUT_ENABLED); |
| 1911 | |
| 1912 | return 0; |
| 1913 | |
| 1914 | fail: |
Edward Cree | 832dc9e | 2015-07-21 15:09:31 +0100 | [diff] [blame] | 1915 | /* Older firmware lacks GET_WORKAROUNDS and this isn't especially |
| 1916 | * terrifying. The call site will have to deal with it though. |
| 1917 | */ |
| 1918 | netif_printk(efx, hw, rc == -ENOSYS ? KERN_DEBUG : KERN_ERR, |
| 1919 | efx->net_dev, "%s: failed rc=%d\n", __func__, rc); |
Edward Cree | 267d9d7 | 2015-05-06 00:59:18 +0100 | [diff] [blame] | 1920 | return rc; |
| 1921 | } |
| 1922 | |
Ben Hutchings | 45a3fd5 | 2012-11-28 04:38:14 +0000 | [diff] [blame] | 1923 | #ifdef CONFIG_SFC_MTD |
| 1924 | |
| 1925 | #define EFX_MCDI_NVRAM_LEN_MAX 128 |
| 1926 | |
| 1927 | static int efx_mcdi_nvram_update_start(struct efx_nic *efx, unsigned int type) |
| 1928 | { |
| 1929 | MCDI_DECLARE_BUF(inbuf, MC_CMD_NVRAM_UPDATE_START_IN_LEN); |
| 1930 | int rc; |
| 1931 | |
| 1932 | MCDI_SET_DWORD(inbuf, NVRAM_UPDATE_START_IN_TYPE, type); |
| 1933 | |
| 1934 | BUILD_BUG_ON(MC_CMD_NVRAM_UPDATE_START_OUT_LEN != 0); |
| 1935 | |
| 1936 | rc = efx_mcdi_rpc(efx, MC_CMD_NVRAM_UPDATE_START, inbuf, sizeof(inbuf), |
| 1937 | NULL, 0, NULL); |
Ben Hutchings | 45a3fd5 | 2012-11-28 04:38:14 +0000 | [diff] [blame] | 1938 | return rc; |
| 1939 | } |
| 1940 | |
| 1941 | static int efx_mcdi_nvram_read(struct efx_nic *efx, unsigned int type, |
| 1942 | loff_t offset, u8 *buffer, size_t length) |
| 1943 | { |
| 1944 | MCDI_DECLARE_BUF(inbuf, MC_CMD_NVRAM_READ_IN_LEN); |
| 1945 | MCDI_DECLARE_BUF(outbuf, |
| 1946 | MC_CMD_NVRAM_READ_OUT_LEN(EFX_MCDI_NVRAM_LEN_MAX)); |
| 1947 | size_t outlen; |
| 1948 | int rc; |
| 1949 | |
| 1950 | MCDI_SET_DWORD(inbuf, NVRAM_READ_IN_TYPE, type); |
| 1951 | MCDI_SET_DWORD(inbuf, NVRAM_READ_IN_OFFSET, offset); |
| 1952 | MCDI_SET_DWORD(inbuf, NVRAM_READ_IN_LENGTH, length); |
| 1953 | |
| 1954 | rc = efx_mcdi_rpc(efx, MC_CMD_NVRAM_READ, inbuf, sizeof(inbuf), |
| 1955 | outbuf, sizeof(outbuf), &outlen); |
| 1956 | if (rc) |
Edward Cree | 1e0b812 | 2013-05-31 18:36:12 +0100 | [diff] [blame] | 1957 | return rc; |
Ben Hutchings | 45a3fd5 | 2012-11-28 04:38:14 +0000 | [diff] [blame] | 1958 | |
| 1959 | memcpy(buffer, MCDI_PTR(outbuf, NVRAM_READ_OUT_READ_BUFFER), length); |
| 1960 | return 0; |
Ben Hutchings | 45a3fd5 | 2012-11-28 04:38:14 +0000 | [diff] [blame] | 1961 | } |
| 1962 | |
| 1963 | static int efx_mcdi_nvram_write(struct efx_nic *efx, unsigned int type, |
| 1964 | loff_t offset, const u8 *buffer, size_t length) |
| 1965 | { |
| 1966 | MCDI_DECLARE_BUF(inbuf, |
| 1967 | MC_CMD_NVRAM_WRITE_IN_LEN(EFX_MCDI_NVRAM_LEN_MAX)); |
| 1968 | int rc; |
| 1969 | |
| 1970 | MCDI_SET_DWORD(inbuf, NVRAM_WRITE_IN_TYPE, type); |
| 1971 | MCDI_SET_DWORD(inbuf, NVRAM_WRITE_IN_OFFSET, offset); |
| 1972 | MCDI_SET_DWORD(inbuf, NVRAM_WRITE_IN_LENGTH, length); |
| 1973 | memcpy(MCDI_PTR(inbuf, NVRAM_WRITE_IN_WRITE_BUFFER), buffer, length); |
| 1974 | |
| 1975 | BUILD_BUG_ON(MC_CMD_NVRAM_WRITE_OUT_LEN != 0); |
| 1976 | |
| 1977 | rc = efx_mcdi_rpc(efx, MC_CMD_NVRAM_WRITE, inbuf, |
| 1978 | ALIGN(MC_CMD_NVRAM_WRITE_IN_LEN(length), 4), |
| 1979 | NULL, 0, NULL); |
Ben Hutchings | 45a3fd5 | 2012-11-28 04:38:14 +0000 | [diff] [blame] | 1980 | return rc; |
| 1981 | } |
| 1982 | |
| 1983 | static int efx_mcdi_nvram_erase(struct efx_nic *efx, unsigned int type, |
| 1984 | loff_t offset, size_t length) |
| 1985 | { |
| 1986 | MCDI_DECLARE_BUF(inbuf, MC_CMD_NVRAM_ERASE_IN_LEN); |
| 1987 | int rc; |
| 1988 | |
| 1989 | MCDI_SET_DWORD(inbuf, NVRAM_ERASE_IN_TYPE, type); |
| 1990 | MCDI_SET_DWORD(inbuf, NVRAM_ERASE_IN_OFFSET, offset); |
| 1991 | MCDI_SET_DWORD(inbuf, NVRAM_ERASE_IN_LENGTH, length); |
| 1992 | |
| 1993 | BUILD_BUG_ON(MC_CMD_NVRAM_ERASE_OUT_LEN != 0); |
| 1994 | |
| 1995 | rc = efx_mcdi_rpc(efx, MC_CMD_NVRAM_ERASE, inbuf, sizeof(inbuf), |
| 1996 | NULL, 0, NULL); |
Ben Hutchings | 45a3fd5 | 2012-11-28 04:38:14 +0000 | [diff] [blame] | 1997 | return rc; |
| 1998 | } |
| 1999 | |
| 2000 | static int efx_mcdi_nvram_update_finish(struct efx_nic *efx, unsigned int type) |
| 2001 | { |
| 2002 | MCDI_DECLARE_BUF(inbuf, MC_CMD_NVRAM_UPDATE_FINISH_IN_LEN); |
| 2003 | int rc; |
| 2004 | |
| 2005 | MCDI_SET_DWORD(inbuf, NVRAM_UPDATE_FINISH_IN_TYPE, type); |
| 2006 | |
| 2007 | BUILD_BUG_ON(MC_CMD_NVRAM_UPDATE_FINISH_OUT_LEN != 0); |
| 2008 | |
| 2009 | rc = efx_mcdi_rpc(efx, MC_CMD_NVRAM_UPDATE_FINISH, inbuf, sizeof(inbuf), |
| 2010 | NULL, 0, NULL); |
Ben Hutchings | 45a3fd5 | 2012-11-28 04:38:14 +0000 | [diff] [blame] | 2011 | return rc; |
| 2012 | } |
| 2013 | |
| 2014 | int efx_mcdi_mtd_read(struct mtd_info *mtd, loff_t start, |
| 2015 | size_t len, size_t *retlen, u8 *buffer) |
| 2016 | { |
| 2017 | struct efx_mcdi_mtd_partition *part = to_efx_mcdi_mtd_partition(mtd); |
| 2018 | struct efx_nic *efx = mtd->priv; |
| 2019 | loff_t offset = start; |
| 2020 | loff_t end = min_t(loff_t, start + len, mtd->size); |
| 2021 | size_t chunk; |
| 2022 | int rc = 0; |
| 2023 | |
| 2024 | while (offset < end) { |
| 2025 | chunk = min_t(size_t, end - offset, EFX_MCDI_NVRAM_LEN_MAX); |
| 2026 | rc = efx_mcdi_nvram_read(efx, part->nvram_type, offset, |
| 2027 | buffer, chunk); |
| 2028 | if (rc) |
| 2029 | goto out; |
| 2030 | offset += chunk; |
| 2031 | buffer += chunk; |
| 2032 | } |
| 2033 | out: |
| 2034 | *retlen = offset - start; |
| 2035 | return rc; |
| 2036 | } |
| 2037 | |
| 2038 | int efx_mcdi_mtd_erase(struct mtd_info *mtd, loff_t start, size_t len) |
| 2039 | { |
| 2040 | struct efx_mcdi_mtd_partition *part = to_efx_mcdi_mtd_partition(mtd); |
| 2041 | struct efx_nic *efx = mtd->priv; |
| 2042 | loff_t offset = start & ~((loff_t)(mtd->erasesize - 1)); |
| 2043 | loff_t end = min_t(loff_t, start + len, mtd->size); |
| 2044 | size_t chunk = part->common.mtd.erasesize; |
| 2045 | int rc = 0; |
| 2046 | |
| 2047 | if (!part->updating) { |
| 2048 | rc = efx_mcdi_nvram_update_start(efx, part->nvram_type); |
| 2049 | if (rc) |
| 2050 | goto out; |
| 2051 | part->updating = true; |
| 2052 | } |
| 2053 | |
| 2054 | /* The MCDI interface can in fact do multiple erase blocks at once; |
| 2055 | * but erasing may be slow, so we make multiple calls here to avoid |
| 2056 | * tripping the MCDI RPC timeout. */ |
| 2057 | while (offset < end) { |
| 2058 | rc = efx_mcdi_nvram_erase(efx, part->nvram_type, offset, |
| 2059 | chunk); |
| 2060 | if (rc) |
| 2061 | goto out; |
| 2062 | offset += chunk; |
| 2063 | } |
| 2064 | out: |
| 2065 | return rc; |
| 2066 | } |
| 2067 | |
| 2068 | int efx_mcdi_mtd_write(struct mtd_info *mtd, loff_t start, |
| 2069 | size_t len, size_t *retlen, const u8 *buffer) |
| 2070 | { |
| 2071 | struct efx_mcdi_mtd_partition *part = to_efx_mcdi_mtd_partition(mtd); |
| 2072 | struct efx_nic *efx = mtd->priv; |
| 2073 | loff_t offset = start; |
| 2074 | loff_t end = min_t(loff_t, start + len, mtd->size); |
| 2075 | size_t chunk; |
| 2076 | int rc = 0; |
| 2077 | |
| 2078 | if (!part->updating) { |
| 2079 | rc = efx_mcdi_nvram_update_start(efx, part->nvram_type); |
| 2080 | if (rc) |
| 2081 | goto out; |
| 2082 | part->updating = true; |
| 2083 | } |
| 2084 | |
| 2085 | while (offset < end) { |
| 2086 | chunk = min_t(size_t, end - offset, EFX_MCDI_NVRAM_LEN_MAX); |
| 2087 | rc = efx_mcdi_nvram_write(efx, part->nvram_type, offset, |
| 2088 | buffer, chunk); |
| 2089 | if (rc) |
| 2090 | goto out; |
| 2091 | offset += chunk; |
| 2092 | buffer += chunk; |
| 2093 | } |
| 2094 | out: |
| 2095 | *retlen = offset - start; |
| 2096 | return rc; |
| 2097 | } |
| 2098 | |
| 2099 | int efx_mcdi_mtd_sync(struct mtd_info *mtd) |
| 2100 | { |
| 2101 | struct efx_mcdi_mtd_partition *part = to_efx_mcdi_mtd_partition(mtd); |
| 2102 | struct efx_nic *efx = mtd->priv; |
| 2103 | int rc = 0; |
| 2104 | |
| 2105 | if (part->updating) { |
| 2106 | part->updating = false; |
| 2107 | rc = efx_mcdi_nvram_update_finish(efx, part->nvram_type); |
| 2108 | } |
| 2109 | |
| 2110 | return rc; |
| 2111 | } |
| 2112 | |
| 2113 | void efx_mcdi_mtd_rename(struct efx_mtd_partition *part) |
| 2114 | { |
| 2115 | struct efx_mcdi_mtd_partition *mcdi_part = |
| 2116 | container_of(part, struct efx_mcdi_mtd_partition, common); |
| 2117 | struct efx_nic *efx = part->mtd.priv; |
| 2118 | |
| 2119 | snprintf(part->name, sizeof(part->name), "%s %s:%02x", |
| 2120 | efx->name, part->type_name, mcdi_part->fw_subtype); |
| 2121 | } |
| 2122 | |
| 2123 | #endif /* CONFIG_SFC_MTD */ |