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