Jesse Brandeburg | 56a62fc | 2013-09-11 08:40:12 +0000 | [diff] [blame] | 1 | /******************************************************************************* |
| 2 | * |
| 3 | * Intel Ethernet Controller XL710 Family Linux Driver |
Greg Rose | dc641b7 | 2013-12-18 13:45:51 +0000 | [diff] [blame] | 4 | * Copyright(c) 2013 - 2014 Intel Corporation. |
Jesse Brandeburg | 56a62fc | 2013-09-11 08:40:12 +0000 | [diff] [blame] | 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify it |
| 7 | * under the terms and conditions of the GNU General Public License, |
| 8 | * version 2, as published by the Free Software Foundation. |
| 9 | * |
| 10 | * This program is distributed in the hope it will be useful, but WITHOUT |
| 11 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
| 12 | * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for |
| 13 | * more details. |
| 14 | * |
Greg Rose | dc641b7 | 2013-12-18 13:45:51 +0000 | [diff] [blame] | 15 | * You should have received a copy of the GNU General Public License along |
| 16 | * with this program. If not, see <http://www.gnu.org/licenses/>. |
Jesse Brandeburg | 56a62fc | 2013-09-11 08:40:12 +0000 | [diff] [blame] | 17 | * |
| 18 | * The full GNU General Public License is included in this distribution in |
| 19 | * the file called "COPYING". |
| 20 | * |
| 21 | * Contact Information: |
| 22 | * e1000-devel Mailing List <e1000-devel@lists.sourceforge.net> |
| 23 | * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497 |
| 24 | * |
| 25 | ******************************************************************************/ |
| 26 | |
| 27 | #include "i40e_prototype.h" |
| 28 | |
| 29 | /** |
Shannon Nelson | 3e26186 | 2014-02-06 05:51:06 +0000 | [diff] [blame] | 30 | * i40e_init_nvm_ops - Initialize NVM function pointers |
| 31 | * @hw: pointer to the HW structure |
Jesse Brandeburg | 56a62fc | 2013-09-11 08:40:12 +0000 | [diff] [blame] | 32 | * |
Shannon Nelson | 3e26186 | 2014-02-06 05:51:06 +0000 | [diff] [blame] | 33 | * Setup the function pointers and the NVM info structure. Should be called |
| 34 | * once per NVM initialization, e.g. inside the i40e_init_shared_code(). |
| 35 | * Please notice that the NVM term is used here (& in all methods covered |
| 36 | * in this file) as an equivalent of the FLASH part mapped into the SR. |
| 37 | * We are accessing FLASH always thru the Shadow RAM. |
Jesse Brandeburg | 56a62fc | 2013-09-11 08:40:12 +0000 | [diff] [blame] | 38 | **/ |
| 39 | i40e_status i40e_init_nvm(struct i40e_hw *hw) |
| 40 | { |
| 41 | struct i40e_nvm_info *nvm = &hw->nvm; |
| 42 | i40e_status ret_code = 0; |
| 43 | u32 fla, gens; |
| 44 | u8 sr_size; |
| 45 | |
| 46 | /* The SR size is stored regardless of the nvm programming mode |
| 47 | * as the blank mode may be used in the factory line. |
| 48 | */ |
| 49 | gens = rd32(hw, I40E_GLNVM_GENS); |
| 50 | sr_size = ((gens & I40E_GLNVM_GENS_SR_SIZE_MASK) >> |
| 51 | I40E_GLNVM_GENS_SR_SIZE_SHIFT); |
Shannon Nelson | 3e26186 | 2014-02-06 05:51:06 +0000 | [diff] [blame] | 52 | /* Switching to words (sr_size contains power of 2KB) */ |
Jesse Brandeburg | 41a1d04 | 2015-06-04 16:24:02 -0400 | [diff] [blame] | 53 | nvm->sr_size = BIT(sr_size) * I40E_SR_WORDS_IN_1KB; |
Jesse Brandeburg | 56a62fc | 2013-09-11 08:40:12 +0000 | [diff] [blame] | 54 | |
Shannon Nelson | 3e26186 | 2014-02-06 05:51:06 +0000 | [diff] [blame] | 55 | /* Check if we are in the normal or blank NVM programming mode */ |
Jesse Brandeburg | 56a62fc | 2013-09-11 08:40:12 +0000 | [diff] [blame] | 56 | fla = rd32(hw, I40E_GLNVM_FLA); |
Shannon Nelson | 3e26186 | 2014-02-06 05:51:06 +0000 | [diff] [blame] | 57 | if (fla & I40E_GLNVM_FLA_LOCKED_MASK) { /* Normal programming mode */ |
| 58 | /* Max NVM timeout */ |
Jesse Brandeburg | 56a62fc | 2013-09-11 08:40:12 +0000 | [diff] [blame] | 59 | nvm->timeout = I40E_MAX_NVM_TIMEOUT; |
| 60 | nvm->blank_nvm_mode = false; |
Shannon Nelson | 3e26186 | 2014-02-06 05:51:06 +0000 | [diff] [blame] | 61 | } else { /* Blank programming mode */ |
Jesse Brandeburg | 56a62fc | 2013-09-11 08:40:12 +0000 | [diff] [blame] | 62 | nvm->blank_nvm_mode = true; |
| 63 | ret_code = I40E_ERR_NVM_BLANK_MODE; |
Shannon Nelson | 74d0d0e | 2014-11-13 08:23:15 +0000 | [diff] [blame] | 64 | i40e_debug(hw, I40E_DEBUG_NVM, "NVM init error: unsupported blank mode.\n"); |
Jesse Brandeburg | 56a62fc | 2013-09-11 08:40:12 +0000 | [diff] [blame] | 65 | } |
| 66 | |
| 67 | return ret_code; |
| 68 | } |
| 69 | |
| 70 | /** |
Shannon Nelson | 3e26186 | 2014-02-06 05:51:06 +0000 | [diff] [blame] | 71 | * i40e_acquire_nvm - Generic request for acquiring the NVM ownership |
| 72 | * @hw: pointer to the HW structure |
| 73 | * @access: NVM access type (read or write) |
Jesse Brandeburg | 56a62fc | 2013-09-11 08:40:12 +0000 | [diff] [blame] | 74 | * |
Shannon Nelson | 3e26186 | 2014-02-06 05:51:06 +0000 | [diff] [blame] | 75 | * This function will request NVM ownership for reading |
| 76 | * via the proper Admin Command. |
Jesse Brandeburg | 56a62fc | 2013-09-11 08:40:12 +0000 | [diff] [blame] | 77 | **/ |
| 78 | i40e_status i40e_acquire_nvm(struct i40e_hw *hw, |
| 79 | enum i40e_aq_resource_access_type access) |
| 80 | { |
| 81 | i40e_status ret_code = 0; |
| 82 | u64 gtime, timeout; |
Shannon Nelson | c509c1d | 2014-11-13 08:23:19 +0000 | [diff] [blame] | 83 | u64 time_left = 0; |
Jesse Brandeburg | 56a62fc | 2013-09-11 08:40:12 +0000 | [diff] [blame] | 84 | |
| 85 | if (hw->nvm.blank_nvm_mode) |
| 86 | goto i40e_i40e_acquire_nvm_exit; |
| 87 | |
| 88 | ret_code = i40e_aq_request_resource(hw, I40E_NVM_RESOURCE_ID, access, |
Shannon Nelson | c509c1d | 2014-11-13 08:23:19 +0000 | [diff] [blame] | 89 | 0, &time_left, NULL); |
Shannon Nelson | 3e26186 | 2014-02-06 05:51:06 +0000 | [diff] [blame] | 90 | /* Reading the Global Device Timer */ |
Jesse Brandeburg | 56a62fc | 2013-09-11 08:40:12 +0000 | [diff] [blame] | 91 | gtime = rd32(hw, I40E_GLVFGEN_TIMER); |
| 92 | |
Shannon Nelson | 3e26186 | 2014-02-06 05:51:06 +0000 | [diff] [blame] | 93 | /* Store the timeout */ |
Shannon Nelson | c509c1d | 2014-11-13 08:23:19 +0000 | [diff] [blame] | 94 | hw->nvm.hw_semaphore_timeout = I40E_MS_TO_GTIME(time_left) + gtime; |
Jesse Brandeburg | 56a62fc | 2013-09-11 08:40:12 +0000 | [diff] [blame] | 95 | |
Shannon Nelson | a3f0b38 | 2014-11-13 08:23:21 +0000 | [diff] [blame] | 96 | if (ret_code) |
| 97 | i40e_debug(hw, I40E_DEBUG_NVM, |
| 98 | "NVM acquire type %d failed time_left=%llu ret=%d aq_err=%d\n", |
| 99 | access, time_left, ret_code, hw->aq.asq_last_status); |
| 100 | |
| 101 | if (ret_code && time_left) { |
Shannon Nelson | 3e26186 | 2014-02-06 05:51:06 +0000 | [diff] [blame] | 102 | /* Poll until the current NVM owner timeouts */ |
Shannon Nelson | c509c1d | 2014-11-13 08:23:19 +0000 | [diff] [blame] | 103 | timeout = I40E_MS_TO_GTIME(I40E_MAX_NVM_TIMEOUT) + gtime; |
Shannon Nelson | a3f0b38 | 2014-11-13 08:23:21 +0000 | [diff] [blame] | 104 | while ((gtime < timeout) && time_left) { |
Jesse Brandeburg | 56a62fc | 2013-09-11 08:40:12 +0000 | [diff] [blame] | 105 | usleep_range(10000, 20000); |
Shannon Nelson | c509c1d | 2014-11-13 08:23:19 +0000 | [diff] [blame] | 106 | gtime = rd32(hw, I40E_GLVFGEN_TIMER); |
Jesse Brandeburg | 56a62fc | 2013-09-11 08:40:12 +0000 | [diff] [blame] | 107 | ret_code = i40e_aq_request_resource(hw, |
| 108 | I40E_NVM_RESOURCE_ID, |
Shannon Nelson | c509c1d | 2014-11-13 08:23:19 +0000 | [diff] [blame] | 109 | access, 0, &time_left, |
Jesse Brandeburg | 56a62fc | 2013-09-11 08:40:12 +0000 | [diff] [blame] | 110 | NULL); |
| 111 | if (!ret_code) { |
| 112 | hw->nvm.hw_semaphore_timeout = |
Shannon Nelson | c509c1d | 2014-11-13 08:23:19 +0000 | [diff] [blame] | 113 | I40E_MS_TO_GTIME(time_left) + gtime; |
Jesse Brandeburg | 56a62fc | 2013-09-11 08:40:12 +0000 | [diff] [blame] | 114 | break; |
| 115 | } |
Jesse Brandeburg | 56a62fc | 2013-09-11 08:40:12 +0000 | [diff] [blame] | 116 | } |
| 117 | if (ret_code) { |
| 118 | hw->nvm.hw_semaphore_timeout = 0; |
Shannon Nelson | 74d0d0e | 2014-11-13 08:23:15 +0000 | [diff] [blame] | 119 | i40e_debug(hw, I40E_DEBUG_NVM, |
Shannon Nelson | a3f0b38 | 2014-11-13 08:23:21 +0000 | [diff] [blame] | 120 | "NVM acquire timed out, wait %llu ms before trying again. status=%d aq_err=%d\n", |
| 121 | time_left, ret_code, hw->aq.asq_last_status); |
Jesse Brandeburg | 56a62fc | 2013-09-11 08:40:12 +0000 | [diff] [blame] | 122 | } |
| 123 | } |
| 124 | |
| 125 | i40e_i40e_acquire_nvm_exit: |
| 126 | return ret_code; |
| 127 | } |
| 128 | |
| 129 | /** |
Shannon Nelson | 3e26186 | 2014-02-06 05:51:06 +0000 | [diff] [blame] | 130 | * i40e_release_nvm - Generic request for releasing the NVM ownership |
| 131 | * @hw: pointer to the HW structure |
Jesse Brandeburg | 56a62fc | 2013-09-11 08:40:12 +0000 | [diff] [blame] | 132 | * |
Shannon Nelson | 3e26186 | 2014-02-06 05:51:06 +0000 | [diff] [blame] | 133 | * This function will release NVM resource via the proper Admin Command. |
Jesse Brandeburg | 56a62fc | 2013-09-11 08:40:12 +0000 | [diff] [blame] | 134 | **/ |
| 135 | void i40e_release_nvm(struct i40e_hw *hw) |
| 136 | { |
| 137 | if (!hw->nvm.blank_nvm_mode) |
| 138 | i40e_aq_release_resource(hw, I40E_NVM_RESOURCE_ID, 0, NULL); |
| 139 | } |
| 140 | |
| 141 | /** |
Shannon Nelson | 3e26186 | 2014-02-06 05:51:06 +0000 | [diff] [blame] | 142 | * i40e_poll_sr_srctl_done_bit - Polls the GLNVM_SRCTL done bit |
| 143 | * @hw: pointer to the HW structure |
Jesse Brandeburg | 56a62fc | 2013-09-11 08:40:12 +0000 | [diff] [blame] | 144 | * |
Shannon Nelson | 3e26186 | 2014-02-06 05:51:06 +0000 | [diff] [blame] | 145 | * Polls the SRCTL Shadow RAM register done bit. |
Jesse Brandeburg | 56a62fc | 2013-09-11 08:40:12 +0000 | [diff] [blame] | 146 | **/ |
| 147 | static i40e_status i40e_poll_sr_srctl_done_bit(struct i40e_hw *hw) |
| 148 | { |
| 149 | i40e_status ret_code = I40E_ERR_TIMEOUT; |
| 150 | u32 srctl, wait_cnt; |
| 151 | |
Shannon Nelson | 3e26186 | 2014-02-06 05:51:06 +0000 | [diff] [blame] | 152 | /* Poll the I40E_GLNVM_SRCTL until the done bit is set */ |
Jesse Brandeburg | 56a62fc | 2013-09-11 08:40:12 +0000 | [diff] [blame] | 153 | for (wait_cnt = 0; wait_cnt < I40E_SRRD_SRCTL_ATTEMPTS; wait_cnt++) { |
| 154 | srctl = rd32(hw, I40E_GLNVM_SRCTL); |
| 155 | if (srctl & I40E_GLNVM_SRCTL_DONE_MASK) { |
| 156 | ret_code = 0; |
| 157 | break; |
| 158 | } |
| 159 | udelay(5); |
| 160 | } |
| 161 | if (ret_code == I40E_ERR_TIMEOUT) |
Shannon Nelson | 74d0d0e | 2014-11-13 08:23:15 +0000 | [diff] [blame] | 162 | i40e_debug(hw, I40E_DEBUG_NVM, "Done bit in GLNVM_SRCTL not set"); |
Jesse Brandeburg | 56a62fc | 2013-09-11 08:40:12 +0000 | [diff] [blame] | 163 | return ret_code; |
| 164 | } |
| 165 | |
| 166 | /** |
Kamil Krawczyk | d1bbe0e | 2015-01-24 09:58:33 +0000 | [diff] [blame] | 167 | * i40e_read_nvm_word_srctl - Reads Shadow RAM via SRCTL register |
Shannon Nelson | 3e26186 | 2014-02-06 05:51:06 +0000 | [diff] [blame] | 168 | * @hw: pointer to the HW structure |
| 169 | * @offset: offset of the Shadow RAM word to read (0x000000 - 0x001FFF) |
| 170 | * @data: word read from the Shadow RAM |
Jesse Brandeburg | 56a62fc | 2013-09-11 08:40:12 +0000 | [diff] [blame] | 171 | * |
Shannon Nelson | 3e26186 | 2014-02-06 05:51:06 +0000 | [diff] [blame] | 172 | * Reads one 16 bit word from the Shadow RAM using the GLNVM_SRCTL register. |
Jesse Brandeburg | 56a62fc | 2013-09-11 08:40:12 +0000 | [diff] [blame] | 173 | **/ |
Shannon Nelson | 37a2973 | 2015-02-27 09:15:19 +0000 | [diff] [blame] | 174 | static i40e_status i40e_read_nvm_word_srctl(struct i40e_hw *hw, u16 offset, |
| 175 | u16 *data) |
Jesse Brandeburg | 56a62fc | 2013-09-11 08:40:12 +0000 | [diff] [blame] | 176 | { |
| 177 | i40e_status ret_code = I40E_ERR_TIMEOUT; |
| 178 | u32 sr_reg; |
| 179 | |
| 180 | if (offset >= hw->nvm.sr_size) { |
Shannon Nelson | 74d0d0e | 2014-11-13 08:23:15 +0000 | [diff] [blame] | 181 | i40e_debug(hw, I40E_DEBUG_NVM, |
| 182 | "NVM read error: offset %d beyond Shadow RAM limit %d\n", |
| 183 | offset, hw->nvm.sr_size); |
Jesse Brandeburg | 56a62fc | 2013-09-11 08:40:12 +0000 | [diff] [blame] | 184 | ret_code = I40E_ERR_PARAM; |
| 185 | goto read_nvm_exit; |
| 186 | } |
| 187 | |
Shannon Nelson | 3e26186 | 2014-02-06 05:51:06 +0000 | [diff] [blame] | 188 | /* Poll the done bit first */ |
Jesse Brandeburg | 56a62fc | 2013-09-11 08:40:12 +0000 | [diff] [blame] | 189 | ret_code = i40e_poll_sr_srctl_done_bit(hw); |
| 190 | if (!ret_code) { |
Shannon Nelson | 3e26186 | 2014-02-06 05:51:06 +0000 | [diff] [blame] | 191 | /* Write the address and start reading */ |
Jesse Brandeburg | 41a1d04 | 2015-06-04 16:24:02 -0400 | [diff] [blame] | 192 | sr_reg = ((u32)offset << I40E_GLNVM_SRCTL_ADDR_SHIFT) | |
| 193 | BIT(I40E_GLNVM_SRCTL_START_SHIFT); |
Jesse Brandeburg | 56a62fc | 2013-09-11 08:40:12 +0000 | [diff] [blame] | 194 | wr32(hw, I40E_GLNVM_SRCTL, sr_reg); |
| 195 | |
Shannon Nelson | 3e26186 | 2014-02-06 05:51:06 +0000 | [diff] [blame] | 196 | /* Poll I40E_GLNVM_SRCTL until the done bit is set */ |
Jesse Brandeburg | 56a62fc | 2013-09-11 08:40:12 +0000 | [diff] [blame] | 197 | ret_code = i40e_poll_sr_srctl_done_bit(hw); |
| 198 | if (!ret_code) { |
| 199 | sr_reg = rd32(hw, I40E_GLNVM_SRDATA); |
| 200 | *data = (u16)((sr_reg & |
| 201 | I40E_GLNVM_SRDATA_RDDATA_MASK) |
| 202 | >> I40E_GLNVM_SRDATA_RDDATA_SHIFT); |
| 203 | } |
| 204 | } |
| 205 | if (ret_code) |
Shannon Nelson | 74d0d0e | 2014-11-13 08:23:15 +0000 | [diff] [blame] | 206 | i40e_debug(hw, I40E_DEBUG_NVM, |
| 207 | "NVM read error: Couldn't access Shadow RAM address: 0x%x\n", |
| 208 | offset); |
Jesse Brandeburg | 56a62fc | 2013-09-11 08:40:12 +0000 | [diff] [blame] | 209 | |
| 210 | read_nvm_exit: |
| 211 | return ret_code; |
| 212 | } |
| 213 | |
| 214 | /** |
Shannon Nelson | 7073f46 | 2015-06-05 12:20:34 -0400 | [diff] [blame] | 215 | * i40e_read_nvm_aq - Read Shadow RAM. |
| 216 | * @hw: pointer to the HW structure. |
| 217 | * @module_pointer: module pointer location in words from the NVM beginning |
| 218 | * @offset: offset in words from module start |
| 219 | * @words: number of words to write |
| 220 | * @data: buffer with words to write to the Shadow RAM |
| 221 | * @last_command: tells the AdminQ that this is the last command |
| 222 | * |
| 223 | * Writes a 16 bit words buffer to the Shadow RAM using the admin command. |
| 224 | **/ |
| 225 | static i40e_status i40e_read_nvm_aq(struct i40e_hw *hw, u8 module_pointer, |
| 226 | u32 offset, u16 words, void *data, |
| 227 | bool last_command) |
| 228 | { |
| 229 | i40e_status ret_code = I40E_ERR_NVM; |
| 230 | struct i40e_asq_cmd_details cmd_details; |
| 231 | |
| 232 | memset(&cmd_details, 0, sizeof(cmd_details)); |
| 233 | |
| 234 | /* Here we are checking the SR limit only for the flat memory model. |
| 235 | * We cannot do it for the module-based model, as we did not acquire |
| 236 | * the NVM resource yet (we cannot get the module pointer value). |
| 237 | * Firmware will check the module-based model. |
| 238 | */ |
| 239 | if ((offset + words) > hw->nvm.sr_size) |
| 240 | i40e_debug(hw, I40E_DEBUG_NVM, |
| 241 | "NVM write error: offset %d beyond Shadow RAM limit %d\n", |
| 242 | (offset + words), hw->nvm.sr_size); |
| 243 | else if (words > I40E_SR_SECTOR_SIZE_IN_WORDS) |
| 244 | /* We can write only up to 4KB (one sector), in one AQ write */ |
| 245 | i40e_debug(hw, I40E_DEBUG_NVM, |
| 246 | "NVM write fail error: tried to write %d words, limit is %d.\n", |
| 247 | words, I40E_SR_SECTOR_SIZE_IN_WORDS); |
| 248 | else if (((offset + (words - 1)) / I40E_SR_SECTOR_SIZE_IN_WORDS) |
| 249 | != (offset / I40E_SR_SECTOR_SIZE_IN_WORDS)) |
| 250 | /* A single write cannot spread over two sectors */ |
| 251 | i40e_debug(hw, I40E_DEBUG_NVM, |
| 252 | "NVM write error: cannot spread over two sectors in a single write offset=%d words=%d\n", |
| 253 | offset, words); |
| 254 | else |
| 255 | ret_code = i40e_aq_read_nvm(hw, module_pointer, |
| 256 | 2 * offset, /*bytes*/ |
| 257 | 2 * words, /*bytes*/ |
| 258 | data, last_command, &cmd_details); |
| 259 | |
| 260 | return ret_code; |
| 261 | } |
| 262 | |
| 263 | /** |
| 264 | * i40e_read_nvm_word_aq - Reads Shadow RAM via AQ |
| 265 | * @hw: pointer to the HW structure |
| 266 | * @offset: offset of the Shadow RAM word to read (0x000000 - 0x001FFF) |
| 267 | * @data: word read from the Shadow RAM |
| 268 | * |
| 269 | * Reads one 16 bit word from the Shadow RAM using the GLNVM_SRCTL register. |
| 270 | **/ |
| 271 | static i40e_status i40e_read_nvm_word_aq(struct i40e_hw *hw, u16 offset, |
| 272 | u16 *data) |
| 273 | { |
| 274 | i40e_status ret_code = I40E_ERR_TIMEOUT; |
| 275 | |
| 276 | ret_code = i40e_read_nvm_aq(hw, 0x0, offset, 1, data, true); |
| 277 | *data = le16_to_cpu(*(__le16 *)data); |
| 278 | |
| 279 | return ret_code; |
| 280 | } |
| 281 | |
| 282 | /** |
Kamil Krawczyk | d1bbe0e | 2015-01-24 09:58:33 +0000 | [diff] [blame] | 283 | * i40e_read_nvm_word - Reads Shadow RAM |
| 284 | * @hw: pointer to the HW structure |
| 285 | * @offset: offset of the Shadow RAM word to read (0x000000 - 0x001FFF) |
| 286 | * @data: word read from the Shadow RAM |
| 287 | * |
| 288 | * Reads one 16 bit word from the Shadow RAM using the GLNVM_SRCTL register. |
| 289 | **/ |
| 290 | i40e_status i40e_read_nvm_word(struct i40e_hw *hw, u16 offset, |
| 291 | u16 *data) |
| 292 | { |
Shannon Nelson | 7073f46 | 2015-06-05 12:20:34 -0400 | [diff] [blame] | 293 | if (hw->mac.type == I40E_MAC_X722) |
| 294 | return i40e_read_nvm_word_aq(hw, offset, data); |
Kamil Krawczyk | d1bbe0e | 2015-01-24 09:58:33 +0000 | [diff] [blame] | 295 | return i40e_read_nvm_word_srctl(hw, offset, data); |
| 296 | } |
| 297 | |
| 298 | /** |
| 299 | * i40e_read_nvm_buffer_srctl - Reads Shadow RAM buffer via SRCTL register |
| 300 | * @hw: pointer to the HW structure |
| 301 | * @offset: offset of the Shadow RAM word to read (0x000000 - 0x001FFF). |
| 302 | * @words: (in) number of words to read; (out) number of words actually read |
| 303 | * @data: words read from the Shadow RAM |
| 304 | * |
| 305 | * Reads 16 bit words (data buffer) from the SR using the i40e_read_nvm_srrd() |
| 306 | * method. The buffer read is preceded by the NVM ownership take |
| 307 | * and followed by the release. |
| 308 | **/ |
Shannon Nelson | 37a2973 | 2015-02-27 09:15:19 +0000 | [diff] [blame] | 309 | static i40e_status i40e_read_nvm_buffer_srctl(struct i40e_hw *hw, u16 offset, |
| 310 | u16 *words, u16 *data) |
Kamil Krawczyk | d1bbe0e | 2015-01-24 09:58:33 +0000 | [diff] [blame] | 311 | { |
| 312 | i40e_status ret_code = 0; |
| 313 | u16 index, word; |
| 314 | |
| 315 | /* Loop thru the selected region */ |
| 316 | for (word = 0; word < *words; word++) { |
| 317 | index = offset + word; |
| 318 | ret_code = i40e_read_nvm_word_srctl(hw, index, &data[word]); |
| 319 | if (ret_code) |
| 320 | break; |
| 321 | } |
| 322 | |
| 323 | /* Update the number of words read from the Shadow RAM */ |
| 324 | *words = word; |
| 325 | |
| 326 | return ret_code; |
| 327 | } |
| 328 | |
| 329 | /** |
Shannon Nelson | 7073f46 | 2015-06-05 12:20:34 -0400 | [diff] [blame] | 330 | * i40e_read_nvm_buffer_aq - Reads Shadow RAM buffer via AQ |
| 331 | * @hw: pointer to the HW structure |
| 332 | * @offset: offset of the Shadow RAM word to read (0x000000 - 0x001FFF). |
| 333 | * @words: (in) number of words to read; (out) number of words actually read |
| 334 | * @data: words read from the Shadow RAM |
| 335 | * |
| 336 | * Reads 16 bit words (data buffer) from the SR using the i40e_read_nvm_aq() |
| 337 | * method. The buffer read is preceded by the NVM ownership take |
| 338 | * and followed by the release. |
| 339 | **/ |
| 340 | static i40e_status i40e_read_nvm_buffer_aq(struct i40e_hw *hw, u16 offset, |
| 341 | u16 *words, u16 *data) |
| 342 | { |
| 343 | i40e_status ret_code; |
| 344 | u16 read_size = *words; |
| 345 | bool last_cmd = false; |
| 346 | u16 words_read = 0; |
| 347 | u16 i = 0; |
| 348 | |
| 349 | do { |
| 350 | /* Calculate number of bytes we should read in this step. |
| 351 | * FVL AQ do not allow to read more than one page at a time or |
| 352 | * to cross page boundaries. |
| 353 | */ |
| 354 | if (offset % I40E_SR_SECTOR_SIZE_IN_WORDS) |
| 355 | read_size = min(*words, |
| 356 | (u16)(I40E_SR_SECTOR_SIZE_IN_WORDS - |
| 357 | (offset % I40E_SR_SECTOR_SIZE_IN_WORDS))); |
| 358 | else |
| 359 | read_size = min((*words - words_read), |
| 360 | I40E_SR_SECTOR_SIZE_IN_WORDS); |
| 361 | |
| 362 | /* Check if this is last command, if so set proper flag */ |
| 363 | if ((words_read + read_size) >= *words) |
| 364 | last_cmd = true; |
| 365 | |
| 366 | ret_code = i40e_read_nvm_aq(hw, 0x0, offset, read_size, |
| 367 | data + words_read, last_cmd); |
| 368 | if (ret_code) |
| 369 | goto read_nvm_buffer_aq_exit; |
| 370 | |
| 371 | /* Increment counter for words already read and move offset to |
| 372 | * new read location |
| 373 | */ |
| 374 | words_read += read_size; |
| 375 | offset += read_size; |
| 376 | } while (words_read < *words); |
| 377 | |
| 378 | for (i = 0; i < *words; i++) |
| 379 | data[i] = le16_to_cpu(((__le16 *)data)[i]); |
| 380 | |
| 381 | read_nvm_buffer_aq_exit: |
| 382 | *words = words_read; |
| 383 | return ret_code; |
| 384 | } |
| 385 | |
| 386 | /** |
Shannon Nelson | 3e26186 | 2014-02-06 05:51:06 +0000 | [diff] [blame] | 387 | * i40e_read_nvm_buffer - Reads Shadow RAM buffer |
| 388 | * @hw: pointer to the HW structure |
| 389 | * @offset: offset of the Shadow RAM word to read (0x000000 - 0x001FFF). |
| 390 | * @words: (in) number of words to read; (out) number of words actually read |
| 391 | * @data: words read from the Shadow RAM |
Jesse Brandeburg | 56a62fc | 2013-09-11 08:40:12 +0000 | [diff] [blame] | 392 | * |
Shannon Nelson | 3e26186 | 2014-02-06 05:51:06 +0000 | [diff] [blame] | 393 | * Reads 16 bit words (data buffer) from the SR using the i40e_read_nvm_srrd() |
| 394 | * method. The buffer read is preceded by the NVM ownership take |
| 395 | * and followed by the release. |
Jesse Brandeburg | 56a62fc | 2013-09-11 08:40:12 +0000 | [diff] [blame] | 396 | **/ |
| 397 | i40e_status i40e_read_nvm_buffer(struct i40e_hw *hw, u16 offset, |
Kamil Krawczyk | d1bbe0e | 2015-01-24 09:58:33 +0000 | [diff] [blame] | 398 | u16 *words, u16 *data) |
Jesse Brandeburg | 56a62fc | 2013-09-11 08:40:12 +0000 | [diff] [blame] | 399 | { |
Shannon Nelson | 7073f46 | 2015-06-05 12:20:34 -0400 | [diff] [blame] | 400 | if (hw->mac.type == I40E_MAC_X722) |
| 401 | return i40e_read_nvm_buffer_aq(hw, offset, words, data); |
Kamil Krawczyk | d1bbe0e | 2015-01-24 09:58:33 +0000 | [diff] [blame] | 402 | return i40e_read_nvm_buffer_srctl(hw, offset, words, data); |
Jesse Brandeburg | 56a62fc | 2013-09-11 08:40:12 +0000 | [diff] [blame] | 403 | } |
| 404 | |
| 405 | /** |
Shannon Nelson | cd552cb | 2014-07-09 07:46:09 +0000 | [diff] [blame] | 406 | * i40e_write_nvm_aq - Writes Shadow RAM. |
| 407 | * @hw: pointer to the HW structure. |
| 408 | * @module_pointer: module pointer location in words from the NVM beginning |
| 409 | * @offset: offset in words from module start |
| 410 | * @words: number of words to write |
| 411 | * @data: buffer with words to write to the Shadow RAM |
| 412 | * @last_command: tells the AdminQ that this is the last command |
| 413 | * |
| 414 | * Writes a 16 bit words buffer to the Shadow RAM using the admin command. |
| 415 | **/ |
Wei Yongjun | 952d963 | 2014-07-30 09:02:53 +0000 | [diff] [blame] | 416 | static i40e_status i40e_write_nvm_aq(struct i40e_hw *hw, u8 module_pointer, |
| 417 | u32 offset, u16 words, void *data, |
| 418 | bool last_command) |
Shannon Nelson | cd552cb | 2014-07-09 07:46:09 +0000 | [diff] [blame] | 419 | { |
| 420 | i40e_status ret_code = I40E_ERR_NVM; |
Shannon Nelson | 6b5c1b8 | 2015-08-28 17:55:47 -0400 | [diff] [blame] | 421 | struct i40e_asq_cmd_details cmd_details; |
| 422 | |
| 423 | memset(&cmd_details, 0, sizeof(cmd_details)); |
| 424 | cmd_details.wb_desc = &hw->nvm_wb_desc; |
Shannon Nelson | cd552cb | 2014-07-09 07:46:09 +0000 | [diff] [blame] | 425 | |
| 426 | /* Here we are checking the SR limit only for the flat memory model. |
| 427 | * We cannot do it for the module-based model, as we did not acquire |
| 428 | * the NVM resource yet (we cannot get the module pointer value). |
| 429 | * Firmware will check the module-based model. |
| 430 | */ |
| 431 | if ((offset + words) > hw->nvm.sr_size) |
Shannon Nelson | 74d0d0e | 2014-11-13 08:23:15 +0000 | [diff] [blame] | 432 | i40e_debug(hw, I40E_DEBUG_NVM, |
| 433 | "NVM write error: offset %d beyond Shadow RAM limit %d\n", |
| 434 | (offset + words), hw->nvm.sr_size); |
Shannon Nelson | cd552cb | 2014-07-09 07:46:09 +0000 | [diff] [blame] | 435 | else if (words > I40E_SR_SECTOR_SIZE_IN_WORDS) |
| 436 | /* We can write only up to 4KB (one sector), in one AQ write */ |
Shannon Nelson | 74d0d0e | 2014-11-13 08:23:15 +0000 | [diff] [blame] | 437 | i40e_debug(hw, I40E_DEBUG_NVM, |
| 438 | "NVM write fail error: tried to write %d words, limit is %d.\n", |
| 439 | words, I40E_SR_SECTOR_SIZE_IN_WORDS); |
Shannon Nelson | cd552cb | 2014-07-09 07:46:09 +0000 | [diff] [blame] | 440 | else if (((offset + (words - 1)) / I40E_SR_SECTOR_SIZE_IN_WORDS) |
| 441 | != (offset / I40E_SR_SECTOR_SIZE_IN_WORDS)) |
| 442 | /* A single write cannot spread over two sectors */ |
Shannon Nelson | 74d0d0e | 2014-11-13 08:23:15 +0000 | [diff] [blame] | 443 | i40e_debug(hw, I40E_DEBUG_NVM, |
| 444 | "NVM write error: cannot spread over two sectors in a single write offset=%d words=%d\n", |
| 445 | offset, words); |
Shannon Nelson | cd552cb | 2014-07-09 07:46:09 +0000 | [diff] [blame] | 446 | else |
| 447 | ret_code = i40e_aq_update_nvm(hw, module_pointer, |
| 448 | 2 * offset, /*bytes*/ |
| 449 | 2 * words, /*bytes*/ |
Shannon Nelson | 6b5c1b8 | 2015-08-28 17:55:47 -0400 | [diff] [blame] | 450 | data, last_command, &cmd_details); |
Shannon Nelson | cd552cb | 2014-07-09 07:46:09 +0000 | [diff] [blame] | 451 | |
| 452 | return ret_code; |
| 453 | } |
| 454 | |
| 455 | /** |
Shannon Nelson | 3e26186 | 2014-02-06 05:51:06 +0000 | [diff] [blame] | 456 | * i40e_calc_nvm_checksum - Calculates and returns the checksum |
| 457 | * @hw: pointer to hardware structure |
| 458 | * @checksum: pointer to the checksum |
Jesse Brandeburg | 56a62fc | 2013-09-11 08:40:12 +0000 | [diff] [blame] | 459 | * |
Shannon Nelson | 3e26186 | 2014-02-06 05:51:06 +0000 | [diff] [blame] | 460 | * This function calculates SW Checksum that covers the whole 64kB shadow RAM |
| 461 | * except the VPD and PCIe ALT Auto-load modules. The structure and size of VPD |
| 462 | * is customer specific and unknown. Therefore, this function skips all maximum |
| 463 | * possible size of VPD (1kB). |
Jesse Brandeburg | 56a62fc | 2013-09-11 08:40:12 +0000 | [diff] [blame] | 464 | **/ |
| 465 | static i40e_status i40e_calc_nvm_checksum(struct i40e_hw *hw, |
| 466 | u16 *checksum) |
| 467 | { |
| 468 | i40e_status ret_code = 0; |
Kamil Krawczyk | d1bbe0e | 2015-01-24 09:58:33 +0000 | [diff] [blame] | 469 | struct i40e_virt_mem vmem; |
Jesse Brandeburg | 56a62fc | 2013-09-11 08:40:12 +0000 | [diff] [blame] | 470 | u16 pcie_alt_module = 0; |
| 471 | u16 checksum_local = 0; |
| 472 | u16 vpd_module = 0; |
Kamil Krawczyk | d1bbe0e | 2015-01-24 09:58:33 +0000 | [diff] [blame] | 473 | u16 *data; |
| 474 | u16 i = 0; |
| 475 | |
| 476 | ret_code = i40e_allocate_virt_mem(hw, &vmem, |
| 477 | I40E_SR_SECTOR_SIZE_IN_WORDS * sizeof(u16)); |
| 478 | if (ret_code) |
| 479 | goto i40e_calc_nvm_checksum_exit; |
| 480 | data = (u16 *)vmem.va; |
Jesse Brandeburg | 56a62fc | 2013-09-11 08:40:12 +0000 | [diff] [blame] | 481 | |
| 482 | /* read pointer to VPD area */ |
Shannon Nelson | a4bcfbb | 2013-12-11 08:17:15 +0000 | [diff] [blame] | 483 | ret_code = i40e_read_nvm_word(hw, I40E_SR_VPD_PTR, &vpd_module); |
Jesse Brandeburg | 56a62fc | 2013-09-11 08:40:12 +0000 | [diff] [blame] | 484 | if (ret_code) { |
| 485 | ret_code = I40E_ERR_NVM_CHECKSUM; |
| 486 | goto i40e_calc_nvm_checksum_exit; |
| 487 | } |
| 488 | |
| 489 | /* read pointer to PCIe Alt Auto-load module */ |
Shannon Nelson | a4bcfbb | 2013-12-11 08:17:15 +0000 | [diff] [blame] | 490 | ret_code = i40e_read_nvm_word(hw, I40E_SR_PCIE_ALT_AUTO_LOAD_PTR, |
Kamil Krawczyk | d1bbe0e | 2015-01-24 09:58:33 +0000 | [diff] [blame] | 491 | &pcie_alt_module); |
Jesse Brandeburg | 56a62fc | 2013-09-11 08:40:12 +0000 | [diff] [blame] | 492 | if (ret_code) { |
| 493 | ret_code = I40E_ERR_NVM_CHECKSUM; |
| 494 | goto i40e_calc_nvm_checksum_exit; |
| 495 | } |
| 496 | |
| 497 | /* Calculate SW checksum that covers the whole 64kB shadow RAM |
| 498 | * except the VPD and PCIe ALT Auto-load modules |
| 499 | */ |
| 500 | for (i = 0; i < hw->nvm.sr_size; i++) { |
Kamil Krawczyk | d1bbe0e | 2015-01-24 09:58:33 +0000 | [diff] [blame] | 501 | /* Read SR page */ |
| 502 | if ((i % I40E_SR_SECTOR_SIZE_IN_WORDS) == 0) { |
| 503 | u16 words = I40E_SR_SECTOR_SIZE_IN_WORDS; |
| 504 | |
| 505 | ret_code = i40e_read_nvm_buffer(hw, i, &words, data); |
| 506 | if (ret_code) { |
| 507 | ret_code = I40E_ERR_NVM_CHECKSUM; |
| 508 | goto i40e_calc_nvm_checksum_exit; |
| 509 | } |
Jesse Brandeburg | 56a62fc | 2013-09-11 08:40:12 +0000 | [diff] [blame] | 510 | } |
| 511 | |
Kamil Krawczyk | d1bbe0e | 2015-01-24 09:58:33 +0000 | [diff] [blame] | 512 | /* Skip Checksum word */ |
| 513 | if (i == I40E_SR_SW_CHECKSUM_WORD) |
| 514 | continue; |
| 515 | /* Skip VPD module (convert byte size to word count) */ |
| 516 | if ((i >= (u32)vpd_module) && |
| 517 | (i < ((u32)vpd_module + |
| 518 | (I40E_SR_VPD_MODULE_MAX_SIZE / 2)))) { |
| 519 | continue; |
Jesse Brandeburg | 56a62fc | 2013-09-11 08:40:12 +0000 | [diff] [blame] | 520 | } |
Kamil Krawczyk | d1bbe0e | 2015-01-24 09:58:33 +0000 | [diff] [blame] | 521 | /* Skip PCIe ALT module (convert byte size to word count) */ |
| 522 | if ((i >= (u32)pcie_alt_module) && |
| 523 | (i < ((u32)pcie_alt_module + |
| 524 | (I40E_SR_PCIE_ALT_MODULE_MAX_SIZE / 2)))) { |
| 525 | continue; |
| 526 | } |
| 527 | |
| 528 | checksum_local += data[i % I40E_SR_SECTOR_SIZE_IN_WORDS]; |
Jesse Brandeburg | 56a62fc | 2013-09-11 08:40:12 +0000 | [diff] [blame] | 529 | } |
| 530 | |
| 531 | *checksum = (u16)I40E_SR_SW_CHECKSUM_BASE - checksum_local; |
| 532 | |
| 533 | i40e_calc_nvm_checksum_exit: |
Kamil Krawczyk | d1bbe0e | 2015-01-24 09:58:33 +0000 | [diff] [blame] | 534 | i40e_free_virt_mem(hw, &vmem); |
Jesse Brandeburg | 56a62fc | 2013-09-11 08:40:12 +0000 | [diff] [blame] | 535 | return ret_code; |
| 536 | } |
| 537 | |
| 538 | /** |
Shannon Nelson | cd552cb | 2014-07-09 07:46:09 +0000 | [diff] [blame] | 539 | * i40e_update_nvm_checksum - Updates the NVM checksum |
| 540 | * @hw: pointer to hardware structure |
| 541 | * |
| 542 | * NVM ownership must be acquired before calling this function and released |
| 543 | * on ARQ completion event reception by caller. |
| 544 | * This function will commit SR to NVM. |
| 545 | **/ |
| 546 | i40e_status i40e_update_nvm_checksum(struct i40e_hw *hw) |
| 547 | { |
| 548 | i40e_status ret_code = 0; |
| 549 | u16 checksum; |
Jesse Brandeburg | dd38c58 | 2015-08-26 15:14:18 -0400 | [diff] [blame] | 550 | __le16 le_sum; |
Shannon Nelson | cd552cb | 2014-07-09 07:46:09 +0000 | [diff] [blame] | 551 | |
| 552 | ret_code = i40e_calc_nvm_checksum(hw, &checksum); |
Jesse Brandeburg | dd38c58 | 2015-08-26 15:14:18 -0400 | [diff] [blame] | 553 | le_sum = cpu_to_le16(checksum); |
Shannon Nelson | cd552cb | 2014-07-09 07:46:09 +0000 | [diff] [blame] | 554 | if (!ret_code) |
| 555 | ret_code = i40e_write_nvm_aq(hw, 0x00, I40E_SR_SW_CHECKSUM_WORD, |
Jesse Brandeburg | dd38c58 | 2015-08-26 15:14:18 -0400 | [diff] [blame] | 556 | 1, &le_sum, true); |
Shannon Nelson | cd552cb | 2014-07-09 07:46:09 +0000 | [diff] [blame] | 557 | |
| 558 | return ret_code; |
| 559 | } |
| 560 | |
| 561 | /** |
Shannon Nelson | 3e26186 | 2014-02-06 05:51:06 +0000 | [diff] [blame] | 562 | * i40e_validate_nvm_checksum - Validate EEPROM checksum |
| 563 | * @hw: pointer to hardware structure |
| 564 | * @checksum: calculated checksum |
Jesse Brandeburg | 56a62fc | 2013-09-11 08:40:12 +0000 | [diff] [blame] | 565 | * |
Shannon Nelson | 3e26186 | 2014-02-06 05:51:06 +0000 | [diff] [blame] | 566 | * Performs checksum calculation and validates the NVM SW checksum. If the |
| 567 | * caller does not need checksum, the value can be NULL. |
Jesse Brandeburg | 56a62fc | 2013-09-11 08:40:12 +0000 | [diff] [blame] | 568 | **/ |
| 569 | i40e_status i40e_validate_nvm_checksum(struct i40e_hw *hw, |
| 570 | u16 *checksum) |
| 571 | { |
| 572 | i40e_status ret_code = 0; |
| 573 | u16 checksum_sr = 0; |
Jesse Brandeburg | e15c9fa | 2014-01-17 15:36:31 -0800 | [diff] [blame] | 574 | u16 checksum_local = 0; |
Jesse Brandeburg | 56a62fc | 2013-09-11 08:40:12 +0000 | [diff] [blame] | 575 | |
Jesse Brandeburg | 56a62fc | 2013-09-11 08:40:12 +0000 | [diff] [blame] | 576 | ret_code = i40e_calc_nvm_checksum(hw, &checksum_local); |
| 577 | if (ret_code) |
Kamil Krawczyk | 7a208e8 | 2014-06-04 04:22:36 +0000 | [diff] [blame] | 578 | goto i40e_validate_nvm_checksum_exit; |
Jesse Brandeburg | 56a62fc | 2013-09-11 08:40:12 +0000 | [diff] [blame] | 579 | |
| 580 | /* Do not use i40e_read_nvm_word() because we do not want to take |
| 581 | * the synchronization semaphores twice here. |
| 582 | */ |
Shannon Nelson | a4bcfbb | 2013-12-11 08:17:15 +0000 | [diff] [blame] | 583 | i40e_read_nvm_word(hw, I40E_SR_SW_CHECKSUM_WORD, &checksum_sr); |
Jesse Brandeburg | 56a62fc | 2013-09-11 08:40:12 +0000 | [diff] [blame] | 584 | |
| 585 | /* Verify read checksum from EEPROM is the same as |
| 586 | * calculated checksum |
| 587 | */ |
| 588 | if (checksum_local != checksum_sr) |
| 589 | ret_code = I40E_ERR_NVM_CHECKSUM; |
| 590 | |
| 591 | /* If the user cares, return the calculated checksum */ |
| 592 | if (checksum) |
| 593 | *checksum = checksum_local; |
| 594 | |
Jesse Brandeburg | 56a62fc | 2013-09-11 08:40:12 +0000 | [diff] [blame] | 595 | i40e_validate_nvm_checksum_exit: |
| 596 | return ret_code; |
| 597 | } |
Shannon Nelson | cd552cb | 2014-07-09 07:46:09 +0000 | [diff] [blame] | 598 | |
| 599 | static i40e_status i40e_nvmupd_state_init(struct i40e_hw *hw, |
| 600 | struct i40e_nvm_access *cmd, |
Shannon Nelson | 79afe83 | 2015-07-23 16:54:33 -0400 | [diff] [blame] | 601 | u8 *bytes, int *perrno); |
Shannon Nelson | cd552cb | 2014-07-09 07:46:09 +0000 | [diff] [blame] | 602 | static i40e_status i40e_nvmupd_state_reading(struct i40e_hw *hw, |
| 603 | struct i40e_nvm_access *cmd, |
Shannon Nelson | 79afe83 | 2015-07-23 16:54:33 -0400 | [diff] [blame] | 604 | u8 *bytes, int *perrno); |
Shannon Nelson | cd552cb | 2014-07-09 07:46:09 +0000 | [diff] [blame] | 605 | static i40e_status i40e_nvmupd_state_writing(struct i40e_hw *hw, |
| 606 | struct i40e_nvm_access *cmd, |
| 607 | u8 *bytes, int *errno); |
| 608 | static enum i40e_nvmupd_cmd i40e_nvmupd_validate_command(struct i40e_hw *hw, |
| 609 | struct i40e_nvm_access *cmd, |
Shannon Nelson | 79afe83 | 2015-07-23 16:54:33 -0400 | [diff] [blame] | 610 | int *perrno); |
Shannon Nelson | cd552cb | 2014-07-09 07:46:09 +0000 | [diff] [blame] | 611 | static i40e_status i40e_nvmupd_nvm_erase(struct i40e_hw *hw, |
| 612 | struct i40e_nvm_access *cmd, |
Shannon Nelson | 79afe83 | 2015-07-23 16:54:33 -0400 | [diff] [blame] | 613 | int *perrno); |
Shannon Nelson | cd552cb | 2014-07-09 07:46:09 +0000 | [diff] [blame] | 614 | static i40e_status i40e_nvmupd_nvm_write(struct i40e_hw *hw, |
| 615 | struct i40e_nvm_access *cmd, |
Shannon Nelson | 79afe83 | 2015-07-23 16:54:33 -0400 | [diff] [blame] | 616 | u8 *bytes, int *perrno); |
Shannon Nelson | cd552cb | 2014-07-09 07:46:09 +0000 | [diff] [blame] | 617 | static i40e_status i40e_nvmupd_nvm_read(struct i40e_hw *hw, |
| 618 | struct i40e_nvm_access *cmd, |
Shannon Nelson | 79afe83 | 2015-07-23 16:54:33 -0400 | [diff] [blame] | 619 | u8 *bytes, int *perrno); |
Shannon Nelson | e4c83c2 | 2015-08-28 17:55:50 -0400 | [diff] [blame] | 620 | static i40e_status i40e_nvmupd_exec_aq(struct i40e_hw *hw, |
| 621 | struct i40e_nvm_access *cmd, |
| 622 | u8 *bytes, int *perrno); |
Shannon Nelson | b72dc7b | 2015-08-28 17:55:51 -0400 | [diff] [blame] | 623 | static i40e_status i40e_nvmupd_get_aq_result(struct i40e_hw *hw, |
| 624 | struct i40e_nvm_access *cmd, |
| 625 | u8 *bytes, int *perrno); |
Shannon Nelson | cd552cb | 2014-07-09 07:46:09 +0000 | [diff] [blame] | 626 | static inline u8 i40e_nvmupd_get_module(u32 val) |
| 627 | { |
| 628 | return (u8)(val & I40E_NVM_MOD_PNT_MASK); |
| 629 | } |
| 630 | static inline u8 i40e_nvmupd_get_transaction(u32 val) |
| 631 | { |
| 632 | return (u8)((val & I40E_NVM_TRANS_MASK) >> I40E_NVM_TRANS_SHIFT); |
| 633 | } |
| 634 | |
Shannon Nelson | 74d0d0e | 2014-11-13 08:23:15 +0000 | [diff] [blame] | 635 | static char *i40e_nvm_update_state_str[] = { |
| 636 | "I40E_NVMUPD_INVALID", |
| 637 | "I40E_NVMUPD_READ_CON", |
| 638 | "I40E_NVMUPD_READ_SNT", |
| 639 | "I40E_NVMUPD_READ_LCB", |
| 640 | "I40E_NVMUPD_READ_SA", |
| 641 | "I40E_NVMUPD_WRITE_ERA", |
| 642 | "I40E_NVMUPD_WRITE_CON", |
| 643 | "I40E_NVMUPD_WRITE_SNT", |
| 644 | "I40E_NVMUPD_WRITE_LCB", |
| 645 | "I40E_NVMUPD_WRITE_SA", |
| 646 | "I40E_NVMUPD_CSUM_CON", |
| 647 | "I40E_NVMUPD_CSUM_SA", |
| 648 | "I40E_NVMUPD_CSUM_LCB", |
Shannon Nelson | 0af8e9d | 2015-08-28 17:55:48 -0400 | [diff] [blame] | 649 | "I40E_NVMUPD_STATUS", |
Shannon Nelson | e4c83c2 | 2015-08-28 17:55:50 -0400 | [diff] [blame] | 650 | "I40E_NVMUPD_EXEC_AQ", |
Shannon Nelson | b72dc7b | 2015-08-28 17:55:51 -0400 | [diff] [blame] | 651 | "I40E_NVMUPD_GET_AQ_RESULT", |
Shannon Nelson | 74d0d0e | 2014-11-13 08:23:15 +0000 | [diff] [blame] | 652 | }; |
| 653 | |
Shannon Nelson | cd552cb | 2014-07-09 07:46:09 +0000 | [diff] [blame] | 654 | /** |
| 655 | * i40e_nvmupd_command - Process an NVM update command |
| 656 | * @hw: pointer to hardware structure |
| 657 | * @cmd: pointer to nvm update command |
| 658 | * @bytes: pointer to the data buffer |
Shannon Nelson | 79afe83 | 2015-07-23 16:54:33 -0400 | [diff] [blame] | 659 | * @perrno: pointer to return error code |
Shannon Nelson | cd552cb | 2014-07-09 07:46:09 +0000 | [diff] [blame] | 660 | * |
| 661 | * Dispatches command depending on what update state is current |
| 662 | **/ |
| 663 | i40e_status i40e_nvmupd_command(struct i40e_hw *hw, |
| 664 | struct i40e_nvm_access *cmd, |
Shannon Nelson | 79afe83 | 2015-07-23 16:54:33 -0400 | [diff] [blame] | 665 | u8 *bytes, int *perrno) |
Shannon Nelson | cd552cb | 2014-07-09 07:46:09 +0000 | [diff] [blame] | 666 | { |
| 667 | i40e_status status; |
Shannon Nelson | 0af8e9d | 2015-08-28 17:55:48 -0400 | [diff] [blame] | 668 | enum i40e_nvmupd_cmd upd_cmd; |
Shannon Nelson | cd552cb | 2014-07-09 07:46:09 +0000 | [diff] [blame] | 669 | |
| 670 | /* assume success */ |
Shannon Nelson | 79afe83 | 2015-07-23 16:54:33 -0400 | [diff] [blame] | 671 | *perrno = 0; |
Shannon Nelson | cd552cb | 2014-07-09 07:46:09 +0000 | [diff] [blame] | 672 | |
Shannon Nelson | 0af8e9d | 2015-08-28 17:55:48 -0400 | [diff] [blame] | 673 | /* early check for status command and debug msgs */ |
| 674 | upd_cmd = i40e_nvmupd_validate_command(hw, cmd, perrno); |
| 675 | |
| 676 | i40e_debug(hw, I40E_DEBUG_NVM, "%s state %d nvm_release_on_hold %d\n", |
| 677 | i40e_nvm_update_state_str[upd_cmd], |
| 678 | hw->nvmupd_state, |
| 679 | hw->aq.nvm_release_on_done); |
| 680 | |
| 681 | if (upd_cmd == I40E_NVMUPD_INVALID) { |
| 682 | *perrno = -EFAULT; |
| 683 | i40e_debug(hw, I40E_DEBUG_NVM, |
| 684 | "i40e_nvmupd_validate_command returns %d errno %d\n", |
| 685 | upd_cmd, *perrno); |
| 686 | } |
| 687 | |
| 688 | /* a status request returns immediately rather than |
| 689 | * going into the state machine |
| 690 | */ |
| 691 | if (upd_cmd == I40E_NVMUPD_STATUS) { |
| 692 | bytes[0] = hw->nvmupd_state; |
| 693 | return 0; |
| 694 | } |
| 695 | |
Shannon Nelson | cd552cb | 2014-07-09 07:46:09 +0000 | [diff] [blame] | 696 | switch (hw->nvmupd_state) { |
| 697 | case I40E_NVMUPD_STATE_INIT: |
Shannon Nelson | 79afe83 | 2015-07-23 16:54:33 -0400 | [diff] [blame] | 698 | status = i40e_nvmupd_state_init(hw, cmd, bytes, perrno); |
Shannon Nelson | cd552cb | 2014-07-09 07:46:09 +0000 | [diff] [blame] | 699 | break; |
| 700 | |
| 701 | case I40E_NVMUPD_STATE_READING: |
Shannon Nelson | 79afe83 | 2015-07-23 16:54:33 -0400 | [diff] [blame] | 702 | status = i40e_nvmupd_state_reading(hw, cmd, bytes, perrno); |
Shannon Nelson | cd552cb | 2014-07-09 07:46:09 +0000 | [diff] [blame] | 703 | break; |
| 704 | |
| 705 | case I40E_NVMUPD_STATE_WRITING: |
Shannon Nelson | 79afe83 | 2015-07-23 16:54:33 -0400 | [diff] [blame] | 706 | status = i40e_nvmupd_state_writing(hw, cmd, bytes, perrno); |
Shannon Nelson | cd552cb | 2014-07-09 07:46:09 +0000 | [diff] [blame] | 707 | break; |
| 708 | |
Shannon Nelson | 2f1b5bc | 2015-08-28 17:55:49 -0400 | [diff] [blame] | 709 | case I40E_NVMUPD_STATE_INIT_WAIT: |
| 710 | case I40E_NVMUPD_STATE_WRITE_WAIT: |
| 711 | status = I40E_ERR_NOT_READY; |
| 712 | *perrno = -EBUSY; |
| 713 | break; |
| 714 | |
Shannon Nelson | cd552cb | 2014-07-09 07:46:09 +0000 | [diff] [blame] | 715 | default: |
| 716 | /* invalid state, should never happen */ |
Shannon Nelson | 74d0d0e | 2014-11-13 08:23:15 +0000 | [diff] [blame] | 717 | i40e_debug(hw, I40E_DEBUG_NVM, |
| 718 | "NVMUPD: no such state %d\n", hw->nvmupd_state); |
Shannon Nelson | cd552cb | 2014-07-09 07:46:09 +0000 | [diff] [blame] | 719 | status = I40E_NOT_SUPPORTED; |
Shannon Nelson | 79afe83 | 2015-07-23 16:54:33 -0400 | [diff] [blame] | 720 | *perrno = -ESRCH; |
Shannon Nelson | cd552cb | 2014-07-09 07:46:09 +0000 | [diff] [blame] | 721 | break; |
| 722 | } |
| 723 | return status; |
| 724 | } |
| 725 | |
| 726 | /** |
| 727 | * i40e_nvmupd_state_init - Handle NVM update state Init |
| 728 | * @hw: pointer to hardware structure |
| 729 | * @cmd: pointer to nvm update command buffer |
| 730 | * @bytes: pointer to the data buffer |
Shannon Nelson | 79afe83 | 2015-07-23 16:54:33 -0400 | [diff] [blame] | 731 | * @perrno: pointer to return error code |
Shannon Nelson | cd552cb | 2014-07-09 07:46:09 +0000 | [diff] [blame] | 732 | * |
| 733 | * Process legitimate commands of the Init state and conditionally set next |
| 734 | * state. Reject all other commands. |
| 735 | **/ |
| 736 | static i40e_status i40e_nvmupd_state_init(struct i40e_hw *hw, |
| 737 | struct i40e_nvm_access *cmd, |
Shannon Nelson | 79afe83 | 2015-07-23 16:54:33 -0400 | [diff] [blame] | 738 | u8 *bytes, int *perrno) |
Shannon Nelson | cd552cb | 2014-07-09 07:46:09 +0000 | [diff] [blame] | 739 | { |
| 740 | i40e_status status = 0; |
| 741 | enum i40e_nvmupd_cmd upd_cmd; |
| 742 | |
Shannon Nelson | 79afe83 | 2015-07-23 16:54:33 -0400 | [diff] [blame] | 743 | upd_cmd = i40e_nvmupd_validate_command(hw, cmd, perrno); |
Shannon Nelson | cd552cb | 2014-07-09 07:46:09 +0000 | [diff] [blame] | 744 | |
| 745 | switch (upd_cmd) { |
| 746 | case I40E_NVMUPD_READ_SA: |
| 747 | status = i40e_acquire_nvm(hw, I40E_RESOURCE_READ); |
| 748 | if (status) { |
Shannon Nelson | 79afe83 | 2015-07-23 16:54:33 -0400 | [diff] [blame] | 749 | *perrno = i40e_aq_rc_to_posix(status, |
Shannon Nelson | bf848f3 | 2014-11-13 08:23:22 +0000 | [diff] [blame] | 750 | hw->aq.asq_last_status); |
Shannon Nelson | cd552cb | 2014-07-09 07:46:09 +0000 | [diff] [blame] | 751 | } else { |
Shannon Nelson | 79afe83 | 2015-07-23 16:54:33 -0400 | [diff] [blame] | 752 | status = i40e_nvmupd_nvm_read(hw, cmd, bytes, perrno); |
Shannon Nelson | cd552cb | 2014-07-09 07:46:09 +0000 | [diff] [blame] | 753 | i40e_release_nvm(hw); |
| 754 | } |
| 755 | break; |
| 756 | |
| 757 | case I40E_NVMUPD_READ_SNT: |
| 758 | status = i40e_acquire_nvm(hw, I40E_RESOURCE_READ); |
| 759 | if (status) { |
Shannon Nelson | 79afe83 | 2015-07-23 16:54:33 -0400 | [diff] [blame] | 760 | *perrno = i40e_aq_rc_to_posix(status, |
Shannon Nelson | bf848f3 | 2014-11-13 08:23:22 +0000 | [diff] [blame] | 761 | hw->aq.asq_last_status); |
Shannon Nelson | cd552cb | 2014-07-09 07:46:09 +0000 | [diff] [blame] | 762 | } else { |
Shannon Nelson | 79afe83 | 2015-07-23 16:54:33 -0400 | [diff] [blame] | 763 | status = i40e_nvmupd_nvm_read(hw, cmd, bytes, perrno); |
Shannon Nelson | 0fdd052 | 2014-11-13 08:23:20 +0000 | [diff] [blame] | 764 | if (status) |
| 765 | i40e_release_nvm(hw); |
| 766 | else |
| 767 | hw->nvmupd_state = I40E_NVMUPD_STATE_READING; |
Shannon Nelson | cd552cb | 2014-07-09 07:46:09 +0000 | [diff] [blame] | 768 | } |
| 769 | break; |
| 770 | |
| 771 | case I40E_NVMUPD_WRITE_ERA: |
| 772 | status = i40e_acquire_nvm(hw, I40E_RESOURCE_WRITE); |
| 773 | if (status) { |
Shannon Nelson | 79afe83 | 2015-07-23 16:54:33 -0400 | [diff] [blame] | 774 | *perrno = i40e_aq_rc_to_posix(status, |
Shannon Nelson | bf848f3 | 2014-11-13 08:23:22 +0000 | [diff] [blame] | 775 | hw->aq.asq_last_status); |
Shannon Nelson | cd552cb | 2014-07-09 07:46:09 +0000 | [diff] [blame] | 776 | } else { |
Shannon Nelson | 79afe83 | 2015-07-23 16:54:33 -0400 | [diff] [blame] | 777 | status = i40e_nvmupd_nvm_erase(hw, cmd, perrno); |
Shannon Nelson | 2f1b5bc | 2015-08-28 17:55:49 -0400 | [diff] [blame] | 778 | if (status) { |
Shannon Nelson | cd552cb | 2014-07-09 07:46:09 +0000 | [diff] [blame] | 779 | i40e_release_nvm(hw); |
Shannon Nelson | 2f1b5bc | 2015-08-28 17:55:49 -0400 | [diff] [blame] | 780 | } else { |
Shannon Nelson | cd552cb | 2014-07-09 07:46:09 +0000 | [diff] [blame] | 781 | hw->aq.nvm_release_on_done = true; |
Shannon Nelson | 2f1b5bc | 2015-08-28 17:55:49 -0400 | [diff] [blame] | 782 | hw->nvmupd_state = I40E_NVMUPD_STATE_INIT_WAIT; |
| 783 | } |
Shannon Nelson | cd552cb | 2014-07-09 07:46:09 +0000 | [diff] [blame] | 784 | } |
| 785 | break; |
| 786 | |
| 787 | case I40E_NVMUPD_WRITE_SA: |
| 788 | status = i40e_acquire_nvm(hw, I40E_RESOURCE_WRITE); |
| 789 | if (status) { |
Shannon Nelson | 79afe83 | 2015-07-23 16:54:33 -0400 | [diff] [blame] | 790 | *perrno = i40e_aq_rc_to_posix(status, |
Shannon Nelson | bf848f3 | 2014-11-13 08:23:22 +0000 | [diff] [blame] | 791 | hw->aq.asq_last_status); |
Shannon Nelson | cd552cb | 2014-07-09 07:46:09 +0000 | [diff] [blame] | 792 | } else { |
Shannon Nelson | 79afe83 | 2015-07-23 16:54:33 -0400 | [diff] [blame] | 793 | status = i40e_nvmupd_nvm_write(hw, cmd, bytes, perrno); |
Shannon Nelson | 2f1b5bc | 2015-08-28 17:55:49 -0400 | [diff] [blame] | 794 | if (status) { |
Shannon Nelson | cd552cb | 2014-07-09 07:46:09 +0000 | [diff] [blame] | 795 | i40e_release_nvm(hw); |
Shannon Nelson | 2f1b5bc | 2015-08-28 17:55:49 -0400 | [diff] [blame] | 796 | } else { |
Shannon Nelson | cd552cb | 2014-07-09 07:46:09 +0000 | [diff] [blame] | 797 | hw->aq.nvm_release_on_done = true; |
Shannon Nelson | 2f1b5bc | 2015-08-28 17:55:49 -0400 | [diff] [blame] | 798 | hw->nvmupd_state = I40E_NVMUPD_STATE_INIT_WAIT; |
| 799 | } |
Shannon Nelson | cd552cb | 2014-07-09 07:46:09 +0000 | [diff] [blame] | 800 | } |
| 801 | break; |
| 802 | |
| 803 | case I40E_NVMUPD_WRITE_SNT: |
| 804 | status = i40e_acquire_nvm(hw, I40E_RESOURCE_WRITE); |
| 805 | if (status) { |
Shannon Nelson | 79afe83 | 2015-07-23 16:54:33 -0400 | [diff] [blame] | 806 | *perrno = i40e_aq_rc_to_posix(status, |
Shannon Nelson | bf848f3 | 2014-11-13 08:23:22 +0000 | [diff] [blame] | 807 | hw->aq.asq_last_status); |
Shannon Nelson | cd552cb | 2014-07-09 07:46:09 +0000 | [diff] [blame] | 808 | } else { |
Shannon Nelson | 79afe83 | 2015-07-23 16:54:33 -0400 | [diff] [blame] | 809 | status = i40e_nvmupd_nvm_write(hw, cmd, bytes, perrno); |
Shannon Nelson | 0fdd052 | 2014-11-13 08:23:20 +0000 | [diff] [blame] | 810 | if (status) |
| 811 | i40e_release_nvm(hw); |
| 812 | else |
Shannon Nelson | 2f1b5bc | 2015-08-28 17:55:49 -0400 | [diff] [blame] | 813 | hw->nvmupd_state = I40E_NVMUPD_STATE_WRITE_WAIT; |
Shannon Nelson | cd552cb | 2014-07-09 07:46:09 +0000 | [diff] [blame] | 814 | } |
| 815 | break; |
| 816 | |
| 817 | case I40E_NVMUPD_CSUM_SA: |
| 818 | status = i40e_acquire_nvm(hw, I40E_RESOURCE_WRITE); |
| 819 | if (status) { |
Shannon Nelson | 79afe83 | 2015-07-23 16:54:33 -0400 | [diff] [blame] | 820 | *perrno = i40e_aq_rc_to_posix(status, |
Shannon Nelson | bf848f3 | 2014-11-13 08:23:22 +0000 | [diff] [blame] | 821 | hw->aq.asq_last_status); |
Shannon Nelson | cd552cb | 2014-07-09 07:46:09 +0000 | [diff] [blame] | 822 | } else { |
| 823 | status = i40e_update_nvm_checksum(hw); |
| 824 | if (status) { |
Shannon Nelson | 79afe83 | 2015-07-23 16:54:33 -0400 | [diff] [blame] | 825 | *perrno = hw->aq.asq_last_status ? |
Shannon Nelson | bf848f3 | 2014-11-13 08:23:22 +0000 | [diff] [blame] | 826 | i40e_aq_rc_to_posix(status, |
| 827 | hw->aq.asq_last_status) : |
Shannon Nelson | cd552cb | 2014-07-09 07:46:09 +0000 | [diff] [blame] | 828 | -EIO; |
| 829 | i40e_release_nvm(hw); |
| 830 | } else { |
| 831 | hw->aq.nvm_release_on_done = true; |
Shannon Nelson | 2f1b5bc | 2015-08-28 17:55:49 -0400 | [diff] [blame] | 832 | hw->nvmupd_state = I40E_NVMUPD_STATE_INIT_WAIT; |
Shannon Nelson | cd552cb | 2014-07-09 07:46:09 +0000 | [diff] [blame] | 833 | } |
| 834 | } |
| 835 | break; |
| 836 | |
Shannon Nelson | e4c83c2 | 2015-08-28 17:55:50 -0400 | [diff] [blame] | 837 | case I40E_NVMUPD_EXEC_AQ: |
| 838 | status = i40e_nvmupd_exec_aq(hw, cmd, bytes, perrno); |
| 839 | break; |
| 840 | |
Shannon Nelson | b72dc7b | 2015-08-28 17:55:51 -0400 | [diff] [blame] | 841 | case I40E_NVMUPD_GET_AQ_RESULT: |
| 842 | status = i40e_nvmupd_get_aq_result(hw, cmd, bytes, perrno); |
| 843 | break; |
| 844 | |
Shannon Nelson | cd552cb | 2014-07-09 07:46:09 +0000 | [diff] [blame] | 845 | default: |
Shannon Nelson | 74d0d0e | 2014-11-13 08:23:15 +0000 | [diff] [blame] | 846 | i40e_debug(hw, I40E_DEBUG_NVM, |
| 847 | "NVMUPD: bad cmd %s in init state\n", |
| 848 | i40e_nvm_update_state_str[upd_cmd]); |
Shannon Nelson | cd552cb | 2014-07-09 07:46:09 +0000 | [diff] [blame] | 849 | status = I40E_ERR_NVM; |
Shannon Nelson | 79afe83 | 2015-07-23 16:54:33 -0400 | [diff] [blame] | 850 | *perrno = -ESRCH; |
Shannon Nelson | cd552cb | 2014-07-09 07:46:09 +0000 | [diff] [blame] | 851 | break; |
| 852 | } |
| 853 | return status; |
| 854 | } |
| 855 | |
| 856 | /** |
| 857 | * i40e_nvmupd_state_reading - Handle NVM update state Reading |
| 858 | * @hw: pointer to hardware structure |
| 859 | * @cmd: pointer to nvm update command buffer |
| 860 | * @bytes: pointer to the data buffer |
Shannon Nelson | 79afe83 | 2015-07-23 16:54:33 -0400 | [diff] [blame] | 861 | * @perrno: pointer to return error code |
Shannon Nelson | cd552cb | 2014-07-09 07:46:09 +0000 | [diff] [blame] | 862 | * |
| 863 | * NVM ownership is already held. Process legitimate commands and set any |
| 864 | * change in state; reject all other commands. |
| 865 | **/ |
| 866 | static i40e_status i40e_nvmupd_state_reading(struct i40e_hw *hw, |
| 867 | struct i40e_nvm_access *cmd, |
Shannon Nelson | 79afe83 | 2015-07-23 16:54:33 -0400 | [diff] [blame] | 868 | u8 *bytes, int *perrno) |
Shannon Nelson | cd552cb | 2014-07-09 07:46:09 +0000 | [diff] [blame] | 869 | { |
Shannon Nelson | 2f1b5bc | 2015-08-28 17:55:49 -0400 | [diff] [blame] | 870 | i40e_status status = 0; |
Shannon Nelson | cd552cb | 2014-07-09 07:46:09 +0000 | [diff] [blame] | 871 | enum i40e_nvmupd_cmd upd_cmd; |
| 872 | |
Shannon Nelson | 79afe83 | 2015-07-23 16:54:33 -0400 | [diff] [blame] | 873 | upd_cmd = i40e_nvmupd_validate_command(hw, cmd, perrno); |
Shannon Nelson | cd552cb | 2014-07-09 07:46:09 +0000 | [diff] [blame] | 874 | |
| 875 | switch (upd_cmd) { |
| 876 | case I40E_NVMUPD_READ_SA: |
| 877 | case I40E_NVMUPD_READ_CON: |
Shannon Nelson | 79afe83 | 2015-07-23 16:54:33 -0400 | [diff] [blame] | 878 | status = i40e_nvmupd_nvm_read(hw, cmd, bytes, perrno); |
Shannon Nelson | cd552cb | 2014-07-09 07:46:09 +0000 | [diff] [blame] | 879 | break; |
| 880 | |
| 881 | case I40E_NVMUPD_READ_LCB: |
Shannon Nelson | 79afe83 | 2015-07-23 16:54:33 -0400 | [diff] [blame] | 882 | status = i40e_nvmupd_nvm_read(hw, cmd, bytes, perrno); |
Shannon Nelson | cd552cb | 2014-07-09 07:46:09 +0000 | [diff] [blame] | 883 | i40e_release_nvm(hw); |
| 884 | hw->nvmupd_state = I40E_NVMUPD_STATE_INIT; |
| 885 | break; |
| 886 | |
| 887 | default: |
Shannon Nelson | 74d0d0e | 2014-11-13 08:23:15 +0000 | [diff] [blame] | 888 | i40e_debug(hw, I40E_DEBUG_NVM, |
| 889 | "NVMUPD: bad cmd %s in reading state.\n", |
| 890 | i40e_nvm_update_state_str[upd_cmd]); |
Shannon Nelson | cd552cb | 2014-07-09 07:46:09 +0000 | [diff] [blame] | 891 | status = I40E_NOT_SUPPORTED; |
Shannon Nelson | 79afe83 | 2015-07-23 16:54:33 -0400 | [diff] [blame] | 892 | *perrno = -ESRCH; |
Shannon Nelson | cd552cb | 2014-07-09 07:46:09 +0000 | [diff] [blame] | 893 | break; |
| 894 | } |
| 895 | return status; |
| 896 | } |
| 897 | |
| 898 | /** |
| 899 | * i40e_nvmupd_state_writing - Handle NVM update state Writing |
| 900 | * @hw: pointer to hardware structure |
| 901 | * @cmd: pointer to nvm update command buffer |
| 902 | * @bytes: pointer to the data buffer |
Shannon Nelson | 79afe83 | 2015-07-23 16:54:33 -0400 | [diff] [blame] | 903 | * @perrno: pointer to return error code |
Shannon Nelson | cd552cb | 2014-07-09 07:46:09 +0000 | [diff] [blame] | 904 | * |
| 905 | * NVM ownership is already held. Process legitimate commands and set any |
| 906 | * change in state; reject all other commands |
| 907 | **/ |
| 908 | static i40e_status i40e_nvmupd_state_writing(struct i40e_hw *hw, |
| 909 | struct i40e_nvm_access *cmd, |
Shannon Nelson | 79afe83 | 2015-07-23 16:54:33 -0400 | [diff] [blame] | 910 | u8 *bytes, int *perrno) |
Shannon Nelson | cd552cb | 2014-07-09 07:46:09 +0000 | [diff] [blame] | 911 | { |
Shannon Nelson | 2f1b5bc | 2015-08-28 17:55:49 -0400 | [diff] [blame] | 912 | i40e_status status = 0; |
Shannon Nelson | cd552cb | 2014-07-09 07:46:09 +0000 | [diff] [blame] | 913 | enum i40e_nvmupd_cmd upd_cmd; |
Shannon Nelson | 2c47e35 | 2015-02-21 06:45:10 +0000 | [diff] [blame] | 914 | bool retry_attempt = false; |
Shannon Nelson | cd552cb | 2014-07-09 07:46:09 +0000 | [diff] [blame] | 915 | |
Shannon Nelson | 79afe83 | 2015-07-23 16:54:33 -0400 | [diff] [blame] | 916 | upd_cmd = i40e_nvmupd_validate_command(hw, cmd, perrno); |
Shannon Nelson | cd552cb | 2014-07-09 07:46:09 +0000 | [diff] [blame] | 917 | |
Shannon Nelson | 2c47e35 | 2015-02-21 06:45:10 +0000 | [diff] [blame] | 918 | retry: |
Shannon Nelson | cd552cb | 2014-07-09 07:46:09 +0000 | [diff] [blame] | 919 | switch (upd_cmd) { |
| 920 | case I40E_NVMUPD_WRITE_CON: |
Shannon Nelson | 79afe83 | 2015-07-23 16:54:33 -0400 | [diff] [blame] | 921 | status = i40e_nvmupd_nvm_write(hw, cmd, bytes, perrno); |
Shannon Nelson | 2f1b5bc | 2015-08-28 17:55:49 -0400 | [diff] [blame] | 922 | if (!status) |
| 923 | hw->nvmupd_state = I40E_NVMUPD_STATE_WRITE_WAIT; |
Shannon Nelson | cd552cb | 2014-07-09 07:46:09 +0000 | [diff] [blame] | 924 | break; |
| 925 | |
| 926 | case I40E_NVMUPD_WRITE_LCB: |
Shannon Nelson | 79afe83 | 2015-07-23 16:54:33 -0400 | [diff] [blame] | 927 | status = i40e_nvmupd_nvm_write(hw, cmd, bytes, perrno); |
Shannon Nelson | 2f1b5bc | 2015-08-28 17:55:49 -0400 | [diff] [blame] | 928 | if (status) { |
| 929 | *perrno = hw->aq.asq_last_status ? |
| 930 | i40e_aq_rc_to_posix(status, |
| 931 | hw->aq.asq_last_status) : |
| 932 | -EIO; |
| 933 | hw->nvmupd_state = I40E_NVMUPD_STATE_INIT; |
| 934 | } else { |
Shannon Nelson | cd552cb | 2014-07-09 07:46:09 +0000 | [diff] [blame] | 935 | hw->aq.nvm_release_on_done = true; |
Shannon Nelson | 2f1b5bc | 2015-08-28 17:55:49 -0400 | [diff] [blame] | 936 | hw->nvmupd_state = I40E_NVMUPD_STATE_INIT_WAIT; |
| 937 | } |
Shannon Nelson | cd552cb | 2014-07-09 07:46:09 +0000 | [diff] [blame] | 938 | break; |
| 939 | |
| 940 | case I40E_NVMUPD_CSUM_CON: |
| 941 | status = i40e_update_nvm_checksum(hw); |
Shannon Nelson | cd552cb | 2014-07-09 07:46:09 +0000 | [diff] [blame] | 942 | if (status) { |
Shannon Nelson | 79afe83 | 2015-07-23 16:54:33 -0400 | [diff] [blame] | 943 | *perrno = hw->aq.asq_last_status ? |
Shannon Nelson | bf848f3 | 2014-11-13 08:23:22 +0000 | [diff] [blame] | 944 | i40e_aq_rc_to_posix(status, |
| 945 | hw->aq.asq_last_status) : |
Shannon Nelson | cd552cb | 2014-07-09 07:46:09 +0000 | [diff] [blame] | 946 | -EIO; |
Shannon Nelson | cd552cb | 2014-07-09 07:46:09 +0000 | [diff] [blame] | 947 | hw->nvmupd_state = I40E_NVMUPD_STATE_INIT; |
Shannon Nelson | 2f1b5bc | 2015-08-28 17:55:49 -0400 | [diff] [blame] | 948 | } else { |
| 949 | hw->nvmupd_state = I40E_NVMUPD_STATE_WRITE_WAIT; |
Shannon Nelson | cd552cb | 2014-07-09 07:46:09 +0000 | [diff] [blame] | 950 | } |
| 951 | break; |
| 952 | |
Shannon Nelson | 0fdd052 | 2014-11-13 08:23:20 +0000 | [diff] [blame] | 953 | case I40E_NVMUPD_CSUM_LCB: |
| 954 | status = i40e_update_nvm_checksum(hw); |
Shannon Nelson | 2f1b5bc | 2015-08-28 17:55:49 -0400 | [diff] [blame] | 955 | if (status) { |
Shannon Nelson | 79afe83 | 2015-07-23 16:54:33 -0400 | [diff] [blame] | 956 | *perrno = hw->aq.asq_last_status ? |
Shannon Nelson | bf848f3 | 2014-11-13 08:23:22 +0000 | [diff] [blame] | 957 | i40e_aq_rc_to_posix(status, |
| 958 | hw->aq.asq_last_status) : |
Shannon Nelson | 0fdd052 | 2014-11-13 08:23:20 +0000 | [diff] [blame] | 959 | -EIO; |
Shannon Nelson | 2f1b5bc | 2015-08-28 17:55:49 -0400 | [diff] [blame] | 960 | hw->nvmupd_state = I40E_NVMUPD_STATE_INIT; |
| 961 | } else { |
Shannon Nelson | 0fdd052 | 2014-11-13 08:23:20 +0000 | [diff] [blame] | 962 | hw->aq.nvm_release_on_done = true; |
Shannon Nelson | 2f1b5bc | 2015-08-28 17:55:49 -0400 | [diff] [blame] | 963 | hw->nvmupd_state = I40E_NVMUPD_STATE_INIT_WAIT; |
| 964 | } |
Shannon Nelson | 0fdd052 | 2014-11-13 08:23:20 +0000 | [diff] [blame] | 965 | break; |
| 966 | |
Shannon Nelson | cd552cb | 2014-07-09 07:46:09 +0000 | [diff] [blame] | 967 | default: |
Shannon Nelson | 74d0d0e | 2014-11-13 08:23:15 +0000 | [diff] [blame] | 968 | i40e_debug(hw, I40E_DEBUG_NVM, |
| 969 | "NVMUPD: bad cmd %s in writing state.\n", |
| 970 | i40e_nvm_update_state_str[upd_cmd]); |
Shannon Nelson | cd552cb | 2014-07-09 07:46:09 +0000 | [diff] [blame] | 971 | status = I40E_NOT_SUPPORTED; |
Shannon Nelson | 79afe83 | 2015-07-23 16:54:33 -0400 | [diff] [blame] | 972 | *perrno = -ESRCH; |
Shannon Nelson | cd552cb | 2014-07-09 07:46:09 +0000 | [diff] [blame] | 973 | break; |
| 974 | } |
Shannon Nelson | 2c47e35 | 2015-02-21 06:45:10 +0000 | [diff] [blame] | 975 | |
| 976 | /* In some circumstances, a multi-write transaction takes longer |
| 977 | * than the default 3 minute timeout on the write semaphore. If |
| 978 | * the write failed with an EBUSY status, this is likely the problem, |
| 979 | * so here we try to reacquire the semaphore then retry the write. |
| 980 | * We only do one retry, then give up. |
| 981 | */ |
| 982 | if (status && (hw->aq.asq_last_status == I40E_AQ_RC_EBUSY) && |
| 983 | !retry_attempt) { |
| 984 | i40e_status old_status = status; |
| 985 | u32 old_asq_status = hw->aq.asq_last_status; |
| 986 | u32 gtime; |
| 987 | |
| 988 | gtime = rd32(hw, I40E_GLVFGEN_TIMER); |
| 989 | if (gtime >= hw->nvm.hw_semaphore_timeout) { |
| 990 | i40e_debug(hw, I40E_DEBUG_ALL, |
| 991 | "NVMUPD: write semaphore expired (%d >= %lld), retrying\n", |
| 992 | gtime, hw->nvm.hw_semaphore_timeout); |
| 993 | i40e_release_nvm(hw); |
| 994 | status = i40e_acquire_nvm(hw, I40E_RESOURCE_WRITE); |
| 995 | if (status) { |
| 996 | i40e_debug(hw, I40E_DEBUG_ALL, |
| 997 | "NVMUPD: write semaphore reacquire failed aq_err = %d\n", |
| 998 | hw->aq.asq_last_status); |
| 999 | status = old_status; |
| 1000 | hw->aq.asq_last_status = old_asq_status; |
| 1001 | } else { |
| 1002 | retry_attempt = true; |
| 1003 | goto retry; |
| 1004 | } |
| 1005 | } |
| 1006 | } |
| 1007 | |
Shannon Nelson | cd552cb | 2014-07-09 07:46:09 +0000 | [diff] [blame] | 1008 | return status; |
| 1009 | } |
| 1010 | |
| 1011 | /** |
| 1012 | * i40e_nvmupd_validate_command - Validate given command |
| 1013 | * @hw: pointer to hardware structure |
| 1014 | * @cmd: pointer to nvm update command buffer |
Shannon Nelson | 79afe83 | 2015-07-23 16:54:33 -0400 | [diff] [blame] | 1015 | * @perrno: pointer to return error code |
Shannon Nelson | cd552cb | 2014-07-09 07:46:09 +0000 | [diff] [blame] | 1016 | * |
| 1017 | * Return one of the valid command types or I40E_NVMUPD_INVALID |
| 1018 | **/ |
| 1019 | static enum i40e_nvmupd_cmd i40e_nvmupd_validate_command(struct i40e_hw *hw, |
| 1020 | struct i40e_nvm_access *cmd, |
Shannon Nelson | 79afe83 | 2015-07-23 16:54:33 -0400 | [diff] [blame] | 1021 | int *perrno) |
Shannon Nelson | cd552cb | 2014-07-09 07:46:09 +0000 | [diff] [blame] | 1022 | { |
| 1023 | enum i40e_nvmupd_cmd upd_cmd; |
Shannon Nelson | 0af8e9d | 2015-08-28 17:55:48 -0400 | [diff] [blame] | 1024 | u8 module, transaction; |
Shannon Nelson | cd552cb | 2014-07-09 07:46:09 +0000 | [diff] [blame] | 1025 | |
| 1026 | /* anything that doesn't match a recognized case is an error */ |
| 1027 | upd_cmd = I40E_NVMUPD_INVALID; |
| 1028 | |
| 1029 | transaction = i40e_nvmupd_get_transaction(cmd->config); |
Shannon Nelson | 0af8e9d | 2015-08-28 17:55:48 -0400 | [diff] [blame] | 1030 | module = i40e_nvmupd_get_module(cmd->config); |
Shannon Nelson | cd552cb | 2014-07-09 07:46:09 +0000 | [diff] [blame] | 1031 | |
| 1032 | /* limits on data size */ |
| 1033 | if ((cmd->data_size < 1) || |
| 1034 | (cmd->data_size > I40E_NVMUPD_MAX_DATA)) { |
Shannon Nelson | 74d0d0e | 2014-11-13 08:23:15 +0000 | [diff] [blame] | 1035 | i40e_debug(hw, I40E_DEBUG_NVM, |
| 1036 | "i40e_nvmupd_validate_command data_size %d\n", |
| 1037 | cmd->data_size); |
Shannon Nelson | 79afe83 | 2015-07-23 16:54:33 -0400 | [diff] [blame] | 1038 | *perrno = -EFAULT; |
Shannon Nelson | cd552cb | 2014-07-09 07:46:09 +0000 | [diff] [blame] | 1039 | return I40E_NVMUPD_INVALID; |
| 1040 | } |
| 1041 | |
| 1042 | switch (cmd->command) { |
| 1043 | case I40E_NVM_READ: |
| 1044 | switch (transaction) { |
| 1045 | case I40E_NVM_CON: |
| 1046 | upd_cmd = I40E_NVMUPD_READ_CON; |
| 1047 | break; |
| 1048 | case I40E_NVM_SNT: |
| 1049 | upd_cmd = I40E_NVMUPD_READ_SNT; |
| 1050 | break; |
| 1051 | case I40E_NVM_LCB: |
| 1052 | upd_cmd = I40E_NVMUPD_READ_LCB; |
| 1053 | break; |
| 1054 | case I40E_NVM_SA: |
| 1055 | upd_cmd = I40E_NVMUPD_READ_SA; |
| 1056 | break; |
Shannon Nelson | 0af8e9d | 2015-08-28 17:55:48 -0400 | [diff] [blame] | 1057 | case I40E_NVM_EXEC: |
| 1058 | if (module == 0xf) |
| 1059 | upd_cmd = I40E_NVMUPD_STATUS; |
Shannon Nelson | b72dc7b | 2015-08-28 17:55:51 -0400 | [diff] [blame] | 1060 | else if (module == 0) |
| 1061 | upd_cmd = I40E_NVMUPD_GET_AQ_RESULT; |
Shannon Nelson | 0af8e9d | 2015-08-28 17:55:48 -0400 | [diff] [blame] | 1062 | break; |
Shannon Nelson | cd552cb | 2014-07-09 07:46:09 +0000 | [diff] [blame] | 1063 | } |
| 1064 | break; |
| 1065 | |
| 1066 | case I40E_NVM_WRITE: |
| 1067 | switch (transaction) { |
| 1068 | case I40E_NVM_CON: |
| 1069 | upd_cmd = I40E_NVMUPD_WRITE_CON; |
| 1070 | break; |
| 1071 | case I40E_NVM_SNT: |
| 1072 | upd_cmd = I40E_NVMUPD_WRITE_SNT; |
| 1073 | break; |
| 1074 | case I40E_NVM_LCB: |
| 1075 | upd_cmd = I40E_NVMUPD_WRITE_LCB; |
| 1076 | break; |
| 1077 | case I40E_NVM_SA: |
| 1078 | upd_cmd = I40E_NVMUPD_WRITE_SA; |
| 1079 | break; |
| 1080 | case I40E_NVM_ERA: |
| 1081 | upd_cmd = I40E_NVMUPD_WRITE_ERA; |
| 1082 | break; |
| 1083 | case I40E_NVM_CSUM: |
| 1084 | upd_cmd = I40E_NVMUPD_CSUM_CON; |
| 1085 | break; |
| 1086 | case (I40E_NVM_CSUM|I40E_NVM_SA): |
| 1087 | upd_cmd = I40E_NVMUPD_CSUM_SA; |
| 1088 | break; |
| 1089 | case (I40E_NVM_CSUM|I40E_NVM_LCB): |
| 1090 | upd_cmd = I40E_NVMUPD_CSUM_LCB; |
| 1091 | break; |
Shannon Nelson | e4c83c2 | 2015-08-28 17:55:50 -0400 | [diff] [blame] | 1092 | case I40E_NVM_EXEC: |
| 1093 | if (module == 0) |
| 1094 | upd_cmd = I40E_NVMUPD_EXEC_AQ; |
| 1095 | break; |
Shannon Nelson | cd552cb | 2014-07-09 07:46:09 +0000 | [diff] [blame] | 1096 | } |
| 1097 | break; |
| 1098 | } |
| 1099 | |
Shannon Nelson | cd552cb | 2014-07-09 07:46:09 +0000 | [diff] [blame] | 1100 | return upd_cmd; |
| 1101 | } |
| 1102 | |
| 1103 | /** |
Shannon Nelson | e4c83c2 | 2015-08-28 17:55:50 -0400 | [diff] [blame] | 1104 | * i40e_nvmupd_exec_aq - Run an AQ command |
| 1105 | * @hw: pointer to hardware structure |
| 1106 | * @cmd: pointer to nvm update command buffer |
| 1107 | * @bytes: pointer to the data buffer |
| 1108 | * @perrno: pointer to return error code |
| 1109 | * |
| 1110 | * cmd structure contains identifiers and data buffer |
| 1111 | **/ |
| 1112 | static i40e_status i40e_nvmupd_exec_aq(struct i40e_hw *hw, |
| 1113 | struct i40e_nvm_access *cmd, |
| 1114 | u8 *bytes, int *perrno) |
| 1115 | { |
| 1116 | struct i40e_asq_cmd_details cmd_details; |
| 1117 | i40e_status status; |
| 1118 | struct i40e_aq_desc *aq_desc; |
| 1119 | u32 buff_size = 0; |
| 1120 | u8 *buff = NULL; |
| 1121 | u32 aq_desc_len; |
| 1122 | u32 aq_data_len; |
| 1123 | |
| 1124 | i40e_debug(hw, I40E_DEBUG_NVM, "NVMUPD: %s\n", __func__); |
| 1125 | memset(&cmd_details, 0, sizeof(cmd_details)); |
| 1126 | cmd_details.wb_desc = &hw->nvm_wb_desc; |
| 1127 | |
| 1128 | aq_desc_len = sizeof(struct i40e_aq_desc); |
| 1129 | memset(&hw->nvm_wb_desc, 0, aq_desc_len); |
| 1130 | |
| 1131 | /* get the aq descriptor */ |
| 1132 | if (cmd->data_size < aq_desc_len) { |
| 1133 | i40e_debug(hw, I40E_DEBUG_NVM, |
| 1134 | "NVMUPD: not enough aq desc bytes for exec, size %d < %d\n", |
| 1135 | cmd->data_size, aq_desc_len); |
| 1136 | *perrno = -EINVAL; |
| 1137 | return I40E_ERR_PARAM; |
| 1138 | } |
| 1139 | aq_desc = (struct i40e_aq_desc *)bytes; |
| 1140 | |
| 1141 | /* if data buffer needed, make sure it's ready */ |
| 1142 | aq_data_len = cmd->data_size - aq_desc_len; |
| 1143 | buff_size = max_t(u32, aq_data_len, le16_to_cpu(aq_desc->datalen)); |
| 1144 | if (buff_size) { |
| 1145 | if (!hw->nvm_buff.va) { |
| 1146 | status = i40e_allocate_virt_mem(hw, &hw->nvm_buff, |
| 1147 | hw->aq.asq_buf_size); |
| 1148 | if (status) |
| 1149 | i40e_debug(hw, I40E_DEBUG_NVM, |
| 1150 | "NVMUPD: i40e_allocate_virt_mem for exec buff failed, %d\n", |
| 1151 | status); |
| 1152 | } |
| 1153 | |
| 1154 | if (hw->nvm_buff.va) { |
| 1155 | buff = hw->nvm_buff.va; |
| 1156 | memcpy(buff, &bytes[aq_desc_len], aq_data_len); |
| 1157 | } |
| 1158 | } |
| 1159 | |
| 1160 | /* and away we go! */ |
| 1161 | status = i40e_asq_send_command(hw, aq_desc, buff, |
| 1162 | buff_size, &cmd_details); |
| 1163 | if (status) { |
| 1164 | i40e_debug(hw, I40E_DEBUG_NVM, |
| 1165 | "i40e_nvmupd_exec_aq err %s aq_err %s\n", |
| 1166 | i40e_stat_str(hw, status), |
| 1167 | i40e_aq_str(hw, hw->aq.asq_last_status)); |
| 1168 | *perrno = i40e_aq_rc_to_posix(status, hw->aq.asq_last_status); |
| 1169 | } |
| 1170 | |
| 1171 | return status; |
| 1172 | } |
| 1173 | |
| 1174 | /** |
Shannon Nelson | b72dc7b | 2015-08-28 17:55:51 -0400 | [diff] [blame] | 1175 | * i40e_nvmupd_get_aq_result - Get the results from the previous exec_aq |
| 1176 | * @hw: pointer to hardware structure |
| 1177 | * @cmd: pointer to nvm update command buffer |
| 1178 | * @bytes: pointer to the data buffer |
| 1179 | * @perrno: pointer to return error code |
| 1180 | * |
| 1181 | * cmd structure contains identifiers and data buffer |
| 1182 | **/ |
| 1183 | static i40e_status i40e_nvmupd_get_aq_result(struct i40e_hw *hw, |
| 1184 | struct i40e_nvm_access *cmd, |
| 1185 | u8 *bytes, int *perrno) |
| 1186 | { |
| 1187 | u32 aq_total_len; |
| 1188 | u32 aq_desc_len; |
| 1189 | int remainder; |
| 1190 | u8 *buff; |
| 1191 | |
| 1192 | i40e_debug(hw, I40E_DEBUG_NVM, "NVMUPD: %s\n", __func__); |
| 1193 | |
| 1194 | aq_desc_len = sizeof(struct i40e_aq_desc); |
| 1195 | aq_total_len = aq_desc_len + le16_to_cpu(hw->nvm_wb_desc.datalen); |
| 1196 | |
| 1197 | /* check offset range */ |
| 1198 | if (cmd->offset > aq_total_len) { |
| 1199 | i40e_debug(hw, I40E_DEBUG_NVM, "%s: offset too big %d > %d\n", |
| 1200 | __func__, cmd->offset, aq_total_len); |
| 1201 | *perrno = -EINVAL; |
| 1202 | return I40E_ERR_PARAM; |
| 1203 | } |
| 1204 | |
| 1205 | /* check copylength range */ |
| 1206 | if (cmd->data_size > (aq_total_len - cmd->offset)) { |
| 1207 | int new_len = aq_total_len - cmd->offset; |
| 1208 | |
| 1209 | i40e_debug(hw, I40E_DEBUG_NVM, "%s: copy length %d too big, trimming to %d\n", |
| 1210 | __func__, cmd->data_size, new_len); |
| 1211 | cmd->data_size = new_len; |
| 1212 | } |
| 1213 | |
| 1214 | remainder = cmd->data_size; |
| 1215 | if (cmd->offset < aq_desc_len) { |
| 1216 | u32 len = aq_desc_len - cmd->offset; |
| 1217 | |
| 1218 | len = min(len, cmd->data_size); |
| 1219 | i40e_debug(hw, I40E_DEBUG_NVM, "%s: aq_desc bytes %d to %d\n", |
| 1220 | __func__, cmd->offset, cmd->offset + len); |
| 1221 | |
| 1222 | buff = ((u8 *)&hw->nvm_wb_desc) + cmd->offset; |
| 1223 | memcpy(bytes, buff, len); |
| 1224 | |
| 1225 | bytes += len; |
| 1226 | remainder -= len; |
| 1227 | buff = hw->nvm_buff.va; |
| 1228 | } else { |
| 1229 | buff = hw->nvm_buff.va + (cmd->offset - aq_desc_len); |
| 1230 | } |
| 1231 | |
| 1232 | if (remainder > 0) { |
| 1233 | int start_byte = buff - (u8 *)hw->nvm_buff.va; |
| 1234 | |
| 1235 | i40e_debug(hw, I40E_DEBUG_NVM, "%s: databuf bytes %d to %d\n", |
| 1236 | __func__, start_byte, start_byte + remainder); |
| 1237 | memcpy(bytes, buff, remainder); |
| 1238 | } |
| 1239 | |
| 1240 | return 0; |
| 1241 | } |
| 1242 | |
| 1243 | /** |
Shannon Nelson | cd552cb | 2014-07-09 07:46:09 +0000 | [diff] [blame] | 1244 | * i40e_nvmupd_nvm_read - Read NVM |
| 1245 | * @hw: pointer to hardware structure |
| 1246 | * @cmd: pointer to nvm update command buffer |
| 1247 | * @bytes: pointer to the data buffer |
Shannon Nelson | 79afe83 | 2015-07-23 16:54:33 -0400 | [diff] [blame] | 1248 | * @perrno: pointer to return error code |
Shannon Nelson | cd552cb | 2014-07-09 07:46:09 +0000 | [diff] [blame] | 1249 | * |
| 1250 | * cmd structure contains identifiers and data buffer |
| 1251 | **/ |
| 1252 | static i40e_status i40e_nvmupd_nvm_read(struct i40e_hw *hw, |
| 1253 | struct i40e_nvm_access *cmd, |
Shannon Nelson | 79afe83 | 2015-07-23 16:54:33 -0400 | [diff] [blame] | 1254 | u8 *bytes, int *perrno) |
Shannon Nelson | cd552cb | 2014-07-09 07:46:09 +0000 | [diff] [blame] | 1255 | { |
Shannon Nelson | 6b5c1b8 | 2015-08-28 17:55:47 -0400 | [diff] [blame] | 1256 | struct i40e_asq_cmd_details cmd_details; |
Shannon Nelson | cd552cb | 2014-07-09 07:46:09 +0000 | [diff] [blame] | 1257 | i40e_status status; |
| 1258 | u8 module, transaction; |
| 1259 | bool last; |
| 1260 | |
| 1261 | transaction = i40e_nvmupd_get_transaction(cmd->config); |
| 1262 | module = i40e_nvmupd_get_module(cmd->config); |
| 1263 | last = (transaction == I40E_NVM_LCB) || (transaction == I40E_NVM_SA); |
Shannon Nelson | cd552cb | 2014-07-09 07:46:09 +0000 | [diff] [blame] | 1264 | |
Shannon Nelson | 6b5c1b8 | 2015-08-28 17:55:47 -0400 | [diff] [blame] | 1265 | memset(&cmd_details, 0, sizeof(cmd_details)); |
| 1266 | cmd_details.wb_desc = &hw->nvm_wb_desc; |
| 1267 | |
Shannon Nelson | cd552cb | 2014-07-09 07:46:09 +0000 | [diff] [blame] | 1268 | status = i40e_aq_read_nvm(hw, module, cmd->offset, (u16)cmd->data_size, |
Shannon Nelson | 6b5c1b8 | 2015-08-28 17:55:47 -0400 | [diff] [blame] | 1269 | bytes, last, &cmd_details); |
Shannon Nelson | 74d0d0e | 2014-11-13 08:23:15 +0000 | [diff] [blame] | 1270 | if (status) { |
| 1271 | i40e_debug(hw, I40E_DEBUG_NVM, |
| 1272 | "i40e_nvmupd_nvm_read mod 0x%x off 0x%x len 0x%x\n", |
| 1273 | module, cmd->offset, cmd->data_size); |
| 1274 | i40e_debug(hw, I40E_DEBUG_NVM, |
| 1275 | "i40e_nvmupd_nvm_read status %d aq %d\n", |
| 1276 | status, hw->aq.asq_last_status); |
Shannon Nelson | 79afe83 | 2015-07-23 16:54:33 -0400 | [diff] [blame] | 1277 | *perrno = i40e_aq_rc_to_posix(status, hw->aq.asq_last_status); |
Shannon Nelson | 74d0d0e | 2014-11-13 08:23:15 +0000 | [diff] [blame] | 1278 | } |
Shannon Nelson | cd552cb | 2014-07-09 07:46:09 +0000 | [diff] [blame] | 1279 | |
| 1280 | return status; |
| 1281 | } |
| 1282 | |
| 1283 | /** |
| 1284 | * i40e_nvmupd_nvm_erase - Erase an NVM module |
| 1285 | * @hw: pointer to hardware structure |
| 1286 | * @cmd: pointer to nvm update command buffer |
Shannon Nelson | 79afe83 | 2015-07-23 16:54:33 -0400 | [diff] [blame] | 1287 | * @perrno: pointer to return error code |
Shannon Nelson | cd552cb | 2014-07-09 07:46:09 +0000 | [diff] [blame] | 1288 | * |
| 1289 | * module, offset, data_size and data are in cmd structure |
| 1290 | **/ |
| 1291 | static i40e_status i40e_nvmupd_nvm_erase(struct i40e_hw *hw, |
| 1292 | struct i40e_nvm_access *cmd, |
Shannon Nelson | 79afe83 | 2015-07-23 16:54:33 -0400 | [diff] [blame] | 1293 | int *perrno) |
Shannon Nelson | cd552cb | 2014-07-09 07:46:09 +0000 | [diff] [blame] | 1294 | { |
| 1295 | i40e_status status = 0; |
Shannon Nelson | 6b5c1b8 | 2015-08-28 17:55:47 -0400 | [diff] [blame] | 1296 | struct i40e_asq_cmd_details cmd_details; |
Shannon Nelson | cd552cb | 2014-07-09 07:46:09 +0000 | [diff] [blame] | 1297 | u8 module, transaction; |
| 1298 | bool last; |
| 1299 | |
| 1300 | transaction = i40e_nvmupd_get_transaction(cmd->config); |
| 1301 | module = i40e_nvmupd_get_module(cmd->config); |
| 1302 | last = (transaction & I40E_NVM_LCB); |
Shannon Nelson | 6b5c1b8 | 2015-08-28 17:55:47 -0400 | [diff] [blame] | 1303 | |
| 1304 | memset(&cmd_details, 0, sizeof(cmd_details)); |
| 1305 | cmd_details.wb_desc = &hw->nvm_wb_desc; |
| 1306 | |
Shannon Nelson | cd552cb | 2014-07-09 07:46:09 +0000 | [diff] [blame] | 1307 | status = i40e_aq_erase_nvm(hw, module, cmd->offset, (u16)cmd->data_size, |
Shannon Nelson | 6b5c1b8 | 2015-08-28 17:55:47 -0400 | [diff] [blame] | 1308 | last, &cmd_details); |
Shannon Nelson | 74d0d0e | 2014-11-13 08:23:15 +0000 | [diff] [blame] | 1309 | if (status) { |
| 1310 | i40e_debug(hw, I40E_DEBUG_NVM, |
| 1311 | "i40e_nvmupd_nvm_erase mod 0x%x off 0x%x len 0x%x\n", |
| 1312 | module, cmd->offset, cmd->data_size); |
| 1313 | i40e_debug(hw, I40E_DEBUG_NVM, |
| 1314 | "i40e_nvmupd_nvm_erase status %d aq %d\n", |
| 1315 | status, hw->aq.asq_last_status); |
Shannon Nelson | 79afe83 | 2015-07-23 16:54:33 -0400 | [diff] [blame] | 1316 | *perrno = i40e_aq_rc_to_posix(status, hw->aq.asq_last_status); |
Shannon Nelson | 74d0d0e | 2014-11-13 08:23:15 +0000 | [diff] [blame] | 1317 | } |
Shannon Nelson | cd552cb | 2014-07-09 07:46:09 +0000 | [diff] [blame] | 1318 | |
| 1319 | return status; |
| 1320 | } |
| 1321 | |
| 1322 | /** |
| 1323 | * i40e_nvmupd_nvm_write - Write NVM |
| 1324 | * @hw: pointer to hardware structure |
| 1325 | * @cmd: pointer to nvm update command buffer |
| 1326 | * @bytes: pointer to the data buffer |
Shannon Nelson | 79afe83 | 2015-07-23 16:54:33 -0400 | [diff] [blame] | 1327 | * @perrno: pointer to return error code |
Shannon Nelson | cd552cb | 2014-07-09 07:46:09 +0000 | [diff] [blame] | 1328 | * |
| 1329 | * module, offset, data_size and data are in cmd structure |
| 1330 | **/ |
| 1331 | static i40e_status i40e_nvmupd_nvm_write(struct i40e_hw *hw, |
| 1332 | struct i40e_nvm_access *cmd, |
Shannon Nelson | 79afe83 | 2015-07-23 16:54:33 -0400 | [diff] [blame] | 1333 | u8 *bytes, int *perrno) |
Shannon Nelson | cd552cb | 2014-07-09 07:46:09 +0000 | [diff] [blame] | 1334 | { |
| 1335 | i40e_status status = 0; |
Shannon Nelson | 6b5c1b8 | 2015-08-28 17:55:47 -0400 | [diff] [blame] | 1336 | struct i40e_asq_cmd_details cmd_details; |
Shannon Nelson | cd552cb | 2014-07-09 07:46:09 +0000 | [diff] [blame] | 1337 | u8 module, transaction; |
| 1338 | bool last; |
| 1339 | |
| 1340 | transaction = i40e_nvmupd_get_transaction(cmd->config); |
| 1341 | module = i40e_nvmupd_get_module(cmd->config); |
| 1342 | last = (transaction & I40E_NVM_LCB); |
Shannon Nelson | 74d0d0e | 2014-11-13 08:23:15 +0000 | [diff] [blame] | 1343 | |
Shannon Nelson | 6b5c1b8 | 2015-08-28 17:55:47 -0400 | [diff] [blame] | 1344 | memset(&cmd_details, 0, sizeof(cmd_details)); |
| 1345 | cmd_details.wb_desc = &hw->nvm_wb_desc; |
| 1346 | |
Shannon Nelson | cd552cb | 2014-07-09 07:46:09 +0000 | [diff] [blame] | 1347 | status = i40e_aq_update_nvm(hw, module, cmd->offset, |
Shannon Nelson | 6b5c1b8 | 2015-08-28 17:55:47 -0400 | [diff] [blame] | 1348 | (u16)cmd->data_size, bytes, last, |
| 1349 | &cmd_details); |
Shannon Nelson | 74d0d0e | 2014-11-13 08:23:15 +0000 | [diff] [blame] | 1350 | if (status) { |
| 1351 | i40e_debug(hw, I40E_DEBUG_NVM, |
| 1352 | "i40e_nvmupd_nvm_write mod 0x%x off 0x%x len 0x%x\n", |
| 1353 | module, cmd->offset, cmd->data_size); |
| 1354 | i40e_debug(hw, I40E_DEBUG_NVM, |
| 1355 | "i40e_nvmupd_nvm_write status %d aq %d\n", |
| 1356 | status, hw->aq.asq_last_status); |
Shannon Nelson | 79afe83 | 2015-07-23 16:54:33 -0400 | [diff] [blame] | 1357 | *perrno = i40e_aq_rc_to_posix(status, hw->aq.asq_last_status); |
Shannon Nelson | 74d0d0e | 2014-11-13 08:23:15 +0000 | [diff] [blame] | 1358 | } |
Shannon Nelson | cd552cb | 2014-07-09 07:46:09 +0000 | [diff] [blame] | 1359 | |
| 1360 | return status; |
| 1361 | } |