2013-09-11 15:40:12 +07:00
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* Intel Ethernet Controller XL710 Family Linux Driver
|
2013-12-18 20:45:51 +07:00
|
|
|
* Copyright(c) 2013 - 2014 Intel Corporation.
|
2013-09-11 15:40:12 +07:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms and conditions of the GNU General Public License,
|
|
|
|
* version 2, as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope it will be useful, but WITHOUT
|
|
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
|
|
|
* more details.
|
|
|
|
*
|
2013-12-18 20:45:51 +07:00
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with this program. If not, see <http://www.gnu.org/licenses/>.
|
2013-09-11 15:40:12 +07:00
|
|
|
*
|
|
|
|
* The full GNU General Public License is included in this distribution in
|
|
|
|
* the file called "COPYING".
|
|
|
|
*
|
|
|
|
* Contact Information:
|
|
|
|
* e1000-devel Mailing List <e1000-devel@lists.sourceforge.net>
|
|
|
|
* Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
#include "i40e_prototype.h"
|
|
|
|
|
|
|
|
/**
|
2014-02-06 12:51:06 +07:00
|
|
|
* i40e_init_nvm_ops - Initialize NVM function pointers
|
|
|
|
* @hw: pointer to the HW structure
|
2013-09-11 15:40:12 +07:00
|
|
|
*
|
2014-02-06 12:51:06 +07:00
|
|
|
* Setup the function pointers and the NVM info structure. Should be called
|
|
|
|
* once per NVM initialization, e.g. inside the i40e_init_shared_code().
|
|
|
|
* Please notice that the NVM term is used here (& in all methods covered
|
|
|
|
* in this file) as an equivalent of the FLASH part mapped into the SR.
|
|
|
|
* We are accessing FLASH always thru the Shadow RAM.
|
2013-09-11 15:40:12 +07:00
|
|
|
**/
|
|
|
|
i40e_status i40e_init_nvm(struct i40e_hw *hw)
|
|
|
|
{
|
|
|
|
struct i40e_nvm_info *nvm = &hw->nvm;
|
|
|
|
i40e_status ret_code = 0;
|
|
|
|
u32 fla, gens;
|
|
|
|
u8 sr_size;
|
|
|
|
|
|
|
|
/* The SR size is stored regardless of the nvm programming mode
|
|
|
|
* as the blank mode may be used in the factory line.
|
|
|
|
*/
|
|
|
|
gens = rd32(hw, I40E_GLNVM_GENS);
|
|
|
|
sr_size = ((gens & I40E_GLNVM_GENS_SR_SIZE_MASK) >>
|
|
|
|
I40E_GLNVM_GENS_SR_SIZE_SHIFT);
|
2014-02-06 12:51:06 +07:00
|
|
|
/* Switching to words (sr_size contains power of 2KB) */
|
2015-06-05 03:24:02 +07:00
|
|
|
nvm->sr_size = BIT(sr_size) * I40E_SR_WORDS_IN_1KB;
|
2013-09-11 15:40:12 +07:00
|
|
|
|
2014-02-06 12:51:06 +07:00
|
|
|
/* Check if we are in the normal or blank NVM programming mode */
|
2013-09-11 15:40:12 +07:00
|
|
|
fla = rd32(hw, I40E_GLNVM_FLA);
|
2014-02-06 12:51:06 +07:00
|
|
|
if (fla & I40E_GLNVM_FLA_LOCKED_MASK) { /* Normal programming mode */
|
|
|
|
/* Max NVM timeout */
|
2013-09-11 15:40:12 +07:00
|
|
|
nvm->timeout = I40E_MAX_NVM_TIMEOUT;
|
|
|
|
nvm->blank_nvm_mode = false;
|
2014-02-06 12:51:06 +07:00
|
|
|
} else { /* Blank programming mode */
|
2013-09-11 15:40:12 +07:00
|
|
|
nvm->blank_nvm_mode = true;
|
|
|
|
ret_code = I40E_ERR_NVM_BLANK_MODE;
|
2014-11-13 15:23:15 +07:00
|
|
|
i40e_debug(hw, I40E_DEBUG_NVM, "NVM init error: unsupported blank mode.\n");
|
2013-09-11 15:40:12 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
return ret_code;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2014-02-06 12:51:06 +07:00
|
|
|
* i40e_acquire_nvm - Generic request for acquiring the NVM ownership
|
|
|
|
* @hw: pointer to the HW structure
|
|
|
|
* @access: NVM access type (read or write)
|
2013-09-11 15:40:12 +07:00
|
|
|
*
|
2014-02-06 12:51:06 +07:00
|
|
|
* This function will request NVM ownership for reading
|
|
|
|
* via the proper Admin Command.
|
2013-09-11 15:40:12 +07:00
|
|
|
**/
|
|
|
|
i40e_status i40e_acquire_nvm(struct i40e_hw *hw,
|
|
|
|
enum i40e_aq_resource_access_type access)
|
|
|
|
{
|
|
|
|
i40e_status ret_code = 0;
|
|
|
|
u64 gtime, timeout;
|
2014-11-13 15:23:19 +07:00
|
|
|
u64 time_left = 0;
|
2013-09-11 15:40:12 +07:00
|
|
|
|
|
|
|
if (hw->nvm.blank_nvm_mode)
|
|
|
|
goto i40e_i40e_acquire_nvm_exit;
|
|
|
|
|
|
|
|
ret_code = i40e_aq_request_resource(hw, I40E_NVM_RESOURCE_ID, access,
|
2014-11-13 15:23:19 +07:00
|
|
|
0, &time_left, NULL);
|
2014-02-06 12:51:06 +07:00
|
|
|
/* Reading the Global Device Timer */
|
2013-09-11 15:40:12 +07:00
|
|
|
gtime = rd32(hw, I40E_GLVFGEN_TIMER);
|
|
|
|
|
2014-02-06 12:51:06 +07:00
|
|
|
/* Store the timeout */
|
2014-11-13 15:23:19 +07:00
|
|
|
hw->nvm.hw_semaphore_timeout = I40E_MS_TO_GTIME(time_left) + gtime;
|
2013-09-11 15:40:12 +07:00
|
|
|
|
2014-11-13 15:23:21 +07:00
|
|
|
if (ret_code)
|
|
|
|
i40e_debug(hw, I40E_DEBUG_NVM,
|
|
|
|
"NVM acquire type %d failed time_left=%llu ret=%d aq_err=%d\n",
|
|
|
|
access, time_left, ret_code, hw->aq.asq_last_status);
|
|
|
|
|
|
|
|
if (ret_code && time_left) {
|
2014-02-06 12:51:06 +07:00
|
|
|
/* Poll until the current NVM owner timeouts */
|
2014-11-13 15:23:19 +07:00
|
|
|
timeout = I40E_MS_TO_GTIME(I40E_MAX_NVM_TIMEOUT) + gtime;
|
2014-11-13 15:23:21 +07:00
|
|
|
while ((gtime < timeout) && time_left) {
|
2013-09-11 15:40:12 +07:00
|
|
|
usleep_range(10000, 20000);
|
2014-11-13 15:23:19 +07:00
|
|
|
gtime = rd32(hw, I40E_GLVFGEN_TIMER);
|
2013-09-11 15:40:12 +07:00
|
|
|
ret_code = i40e_aq_request_resource(hw,
|
|
|
|
I40E_NVM_RESOURCE_ID,
|
2014-11-13 15:23:19 +07:00
|
|
|
access, 0, &time_left,
|
2013-09-11 15:40:12 +07:00
|
|
|
NULL);
|
|
|
|
if (!ret_code) {
|
|
|
|
hw->nvm.hw_semaphore_timeout =
|
2014-11-13 15:23:19 +07:00
|
|
|
I40E_MS_TO_GTIME(time_left) + gtime;
|
2013-09-11 15:40:12 +07:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (ret_code) {
|
|
|
|
hw->nvm.hw_semaphore_timeout = 0;
|
2014-11-13 15:23:15 +07:00
|
|
|
i40e_debug(hw, I40E_DEBUG_NVM,
|
2014-11-13 15:23:21 +07:00
|
|
|
"NVM acquire timed out, wait %llu ms before trying again. status=%d aq_err=%d\n",
|
|
|
|
time_left, ret_code, hw->aq.asq_last_status);
|
2013-09-11 15:40:12 +07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
i40e_i40e_acquire_nvm_exit:
|
|
|
|
return ret_code;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2014-02-06 12:51:06 +07:00
|
|
|
* i40e_release_nvm - Generic request for releasing the NVM ownership
|
|
|
|
* @hw: pointer to the HW structure
|
2013-09-11 15:40:12 +07:00
|
|
|
*
|
2014-02-06 12:51:06 +07:00
|
|
|
* This function will release NVM resource via the proper Admin Command.
|
2013-09-11 15:40:12 +07:00
|
|
|
**/
|
|
|
|
void i40e_release_nvm(struct i40e_hw *hw)
|
|
|
|
{
|
|
|
|
if (!hw->nvm.blank_nvm_mode)
|
|
|
|
i40e_aq_release_resource(hw, I40E_NVM_RESOURCE_ID, 0, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2014-02-06 12:51:06 +07:00
|
|
|
* i40e_poll_sr_srctl_done_bit - Polls the GLNVM_SRCTL done bit
|
|
|
|
* @hw: pointer to the HW structure
|
2013-09-11 15:40:12 +07:00
|
|
|
*
|
2014-02-06 12:51:06 +07:00
|
|
|
* Polls the SRCTL Shadow RAM register done bit.
|
2013-09-11 15:40:12 +07:00
|
|
|
**/
|
|
|
|
static i40e_status i40e_poll_sr_srctl_done_bit(struct i40e_hw *hw)
|
|
|
|
{
|
|
|
|
i40e_status ret_code = I40E_ERR_TIMEOUT;
|
|
|
|
u32 srctl, wait_cnt;
|
|
|
|
|
2014-02-06 12:51:06 +07:00
|
|
|
/* Poll the I40E_GLNVM_SRCTL until the done bit is set */
|
2013-09-11 15:40:12 +07:00
|
|
|
for (wait_cnt = 0; wait_cnt < I40E_SRRD_SRCTL_ATTEMPTS; wait_cnt++) {
|
|
|
|
srctl = rd32(hw, I40E_GLNVM_SRCTL);
|
|
|
|
if (srctl & I40E_GLNVM_SRCTL_DONE_MASK) {
|
|
|
|
ret_code = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
udelay(5);
|
|
|
|
}
|
|
|
|
if (ret_code == I40E_ERR_TIMEOUT)
|
2014-11-13 15:23:15 +07:00
|
|
|
i40e_debug(hw, I40E_DEBUG_NVM, "Done bit in GLNVM_SRCTL not set");
|
2013-09-11 15:40:12 +07:00
|
|
|
return ret_code;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2015-01-24 16:58:33 +07:00
|
|
|
* i40e_read_nvm_word_srctl - Reads Shadow RAM via SRCTL register
|
2014-02-06 12:51:06 +07:00
|
|
|
* @hw: pointer to the HW structure
|
|
|
|
* @offset: offset of the Shadow RAM word to read (0x000000 - 0x001FFF)
|
|
|
|
* @data: word read from the Shadow RAM
|
2013-09-11 15:40:12 +07:00
|
|
|
*
|
2014-02-06 12:51:06 +07:00
|
|
|
* Reads one 16 bit word from the Shadow RAM using the GLNVM_SRCTL register.
|
2013-09-11 15:40:12 +07:00
|
|
|
**/
|
2015-02-27 16:15:19 +07:00
|
|
|
static i40e_status i40e_read_nvm_word_srctl(struct i40e_hw *hw, u16 offset,
|
|
|
|
u16 *data)
|
2013-09-11 15:40:12 +07:00
|
|
|
{
|
|
|
|
i40e_status ret_code = I40E_ERR_TIMEOUT;
|
|
|
|
u32 sr_reg;
|
|
|
|
|
|
|
|
if (offset >= hw->nvm.sr_size) {
|
2014-11-13 15:23:15 +07:00
|
|
|
i40e_debug(hw, I40E_DEBUG_NVM,
|
|
|
|
"NVM read error: offset %d beyond Shadow RAM limit %d\n",
|
|
|
|
offset, hw->nvm.sr_size);
|
2013-09-11 15:40:12 +07:00
|
|
|
ret_code = I40E_ERR_PARAM;
|
|
|
|
goto read_nvm_exit;
|
|
|
|
}
|
|
|
|
|
2014-02-06 12:51:06 +07:00
|
|
|
/* Poll the done bit first */
|
2013-09-11 15:40:12 +07:00
|
|
|
ret_code = i40e_poll_sr_srctl_done_bit(hw);
|
|
|
|
if (!ret_code) {
|
2014-02-06 12:51:06 +07:00
|
|
|
/* Write the address and start reading */
|
2015-06-05 03:24:02 +07:00
|
|
|
sr_reg = ((u32)offset << I40E_GLNVM_SRCTL_ADDR_SHIFT) |
|
|
|
|
BIT(I40E_GLNVM_SRCTL_START_SHIFT);
|
2013-09-11 15:40:12 +07:00
|
|
|
wr32(hw, I40E_GLNVM_SRCTL, sr_reg);
|
|
|
|
|
2014-02-06 12:51:06 +07:00
|
|
|
/* Poll I40E_GLNVM_SRCTL until the done bit is set */
|
2013-09-11 15:40:12 +07:00
|
|
|
ret_code = i40e_poll_sr_srctl_done_bit(hw);
|
|
|
|
if (!ret_code) {
|
|
|
|
sr_reg = rd32(hw, I40E_GLNVM_SRDATA);
|
|
|
|
*data = (u16)((sr_reg &
|
|
|
|
I40E_GLNVM_SRDATA_RDDATA_MASK)
|
|
|
|
>> I40E_GLNVM_SRDATA_RDDATA_SHIFT);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (ret_code)
|
2014-11-13 15:23:15 +07:00
|
|
|
i40e_debug(hw, I40E_DEBUG_NVM,
|
|
|
|
"NVM read error: Couldn't access Shadow RAM address: 0x%x\n",
|
|
|
|
offset);
|
2013-09-11 15:40:12 +07:00
|
|
|
|
|
|
|
read_nvm_exit:
|
|
|
|
return ret_code;
|
|
|
|
}
|
|
|
|
|
2015-06-05 23:20:34 +07:00
|
|
|
/**
|
|
|
|
* i40e_read_nvm_aq - Read Shadow RAM.
|
|
|
|
* @hw: pointer to the HW structure.
|
|
|
|
* @module_pointer: module pointer location in words from the NVM beginning
|
|
|
|
* @offset: offset in words from module start
|
|
|
|
* @words: number of words to write
|
|
|
|
* @data: buffer with words to write to the Shadow RAM
|
|
|
|
* @last_command: tells the AdminQ that this is the last command
|
|
|
|
*
|
|
|
|
* Writes a 16 bit words buffer to the Shadow RAM using the admin command.
|
|
|
|
**/
|
|
|
|
static i40e_status i40e_read_nvm_aq(struct i40e_hw *hw, u8 module_pointer,
|
|
|
|
u32 offset, u16 words, void *data,
|
|
|
|
bool last_command)
|
|
|
|
{
|
|
|
|
i40e_status ret_code = I40E_ERR_NVM;
|
|
|
|
struct i40e_asq_cmd_details cmd_details;
|
|
|
|
|
|
|
|
memset(&cmd_details, 0, sizeof(cmd_details));
|
|
|
|
|
|
|
|
/* Here we are checking the SR limit only for the flat memory model.
|
|
|
|
* We cannot do it for the module-based model, as we did not acquire
|
|
|
|
* the NVM resource yet (we cannot get the module pointer value).
|
|
|
|
* Firmware will check the module-based model.
|
|
|
|
*/
|
|
|
|
if ((offset + words) > hw->nvm.sr_size)
|
|
|
|
i40e_debug(hw, I40E_DEBUG_NVM,
|
|
|
|
"NVM write error: offset %d beyond Shadow RAM limit %d\n",
|
|
|
|
(offset + words), hw->nvm.sr_size);
|
|
|
|
else if (words > I40E_SR_SECTOR_SIZE_IN_WORDS)
|
|
|
|
/* We can write only up to 4KB (one sector), in one AQ write */
|
|
|
|
i40e_debug(hw, I40E_DEBUG_NVM,
|
|
|
|
"NVM write fail error: tried to write %d words, limit is %d.\n",
|
|
|
|
words, I40E_SR_SECTOR_SIZE_IN_WORDS);
|
|
|
|
else if (((offset + (words - 1)) / I40E_SR_SECTOR_SIZE_IN_WORDS)
|
|
|
|
!= (offset / I40E_SR_SECTOR_SIZE_IN_WORDS))
|
|
|
|
/* A single write cannot spread over two sectors */
|
|
|
|
i40e_debug(hw, I40E_DEBUG_NVM,
|
|
|
|
"NVM write error: cannot spread over two sectors in a single write offset=%d words=%d\n",
|
|
|
|
offset, words);
|
|
|
|
else
|
|
|
|
ret_code = i40e_aq_read_nvm(hw, module_pointer,
|
|
|
|
2 * offset, /*bytes*/
|
|
|
|
2 * words, /*bytes*/
|
|
|
|
data, last_command, &cmd_details);
|
|
|
|
|
|
|
|
return ret_code;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* i40e_read_nvm_word_aq - Reads Shadow RAM via AQ
|
|
|
|
* @hw: pointer to the HW structure
|
|
|
|
* @offset: offset of the Shadow RAM word to read (0x000000 - 0x001FFF)
|
|
|
|
* @data: word read from the Shadow RAM
|
|
|
|
*
|
|
|
|
* Reads one 16 bit word from the Shadow RAM using the GLNVM_SRCTL register.
|
|
|
|
**/
|
|
|
|
static i40e_status i40e_read_nvm_word_aq(struct i40e_hw *hw, u16 offset,
|
|
|
|
u16 *data)
|
|
|
|
{
|
|
|
|
i40e_status ret_code = I40E_ERR_TIMEOUT;
|
|
|
|
|
|
|
|
ret_code = i40e_read_nvm_aq(hw, 0x0, offset, 1, data, true);
|
|
|
|
*data = le16_to_cpu(*(__le16 *)data);
|
|
|
|
|
|
|
|
return ret_code;
|
|
|
|
}
|
|
|
|
|
2013-09-11 15:40:12 +07:00
|
|
|
/**
|
2015-01-24 16:58:33 +07:00
|
|
|
* i40e_read_nvm_word - Reads Shadow RAM
|
|
|
|
* @hw: pointer to the HW structure
|
|
|
|
* @offset: offset of the Shadow RAM word to read (0x000000 - 0x001FFF)
|
|
|
|
* @data: word read from the Shadow RAM
|
|
|
|
*
|
|
|
|
* Reads one 16 bit word from the Shadow RAM using the GLNVM_SRCTL register.
|
|
|
|
**/
|
|
|
|
i40e_status i40e_read_nvm_word(struct i40e_hw *hw, u16 offset,
|
|
|
|
u16 *data)
|
|
|
|
{
|
2015-09-25 05:26:32 +07:00
|
|
|
enum i40e_status_code ret_code = 0;
|
|
|
|
|
|
|
|
if (hw->flags & I40E_HW_FLAG_AQ_SRCTL_ACCESS_ENABLE) {
|
|
|
|
ret_code = i40e_acquire_nvm(hw, I40E_RESOURCE_READ);
|
|
|
|
if (!ret_code) {
|
|
|
|
ret_code = i40e_read_nvm_word_aq(hw, offset, data);
|
|
|
|
i40e_release_nvm(hw);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
ret_code = i40e_read_nvm_word_srctl(hw, offset, data);
|
|
|
|
}
|
|
|
|
return ret_code;
|
2015-01-24 16:58:33 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* i40e_read_nvm_buffer_srctl - Reads Shadow RAM buffer via SRCTL register
|
2014-02-06 12:51:06 +07:00
|
|
|
* @hw: pointer to the HW structure
|
|
|
|
* @offset: offset of the Shadow RAM word to read (0x000000 - 0x001FFF).
|
|
|
|
* @words: (in) number of words to read; (out) number of words actually read
|
|
|
|
* @data: words read from the Shadow RAM
|
2013-09-11 15:40:12 +07:00
|
|
|
*
|
2014-02-06 12:51:06 +07:00
|
|
|
* Reads 16 bit words (data buffer) from the SR using the i40e_read_nvm_srrd()
|
|
|
|
* method. The buffer read is preceded by the NVM ownership take
|
|
|
|
* and followed by the release.
|
2013-09-11 15:40:12 +07:00
|
|
|
**/
|
2015-02-27 16:15:19 +07:00
|
|
|
static i40e_status i40e_read_nvm_buffer_srctl(struct i40e_hw *hw, u16 offset,
|
|
|
|
u16 *words, u16 *data)
|
2013-09-11 15:40:12 +07:00
|
|
|
{
|
|
|
|
i40e_status ret_code = 0;
|
|
|
|
u16 index, word;
|
|
|
|
|
2014-02-06 12:51:06 +07:00
|
|
|
/* Loop thru the selected region */
|
2013-12-11 15:17:15 +07:00
|
|
|
for (word = 0; word < *words; word++) {
|
|
|
|
index = offset + word;
|
2015-01-24 16:58:33 +07:00
|
|
|
ret_code = i40e_read_nvm_word_srctl(hw, index, &data[word]);
|
2013-12-11 15:17:15 +07:00
|
|
|
if (ret_code)
|
|
|
|
break;
|
2013-09-11 15:40:12 +07:00
|
|
|
}
|
|
|
|
|
2014-02-06 12:51:06 +07:00
|
|
|
/* Update the number of words read from the Shadow RAM */
|
2013-12-11 15:17:15 +07:00
|
|
|
*words = word;
|
|
|
|
|
2013-09-11 15:40:12 +07:00
|
|
|
return ret_code;
|
|
|
|
}
|
|
|
|
|
2015-06-05 23:20:34 +07:00
|
|
|
/**
|
|
|
|
* i40e_read_nvm_buffer_aq - Reads Shadow RAM buffer via AQ
|
|
|
|
* @hw: pointer to the HW structure
|
|
|
|
* @offset: offset of the Shadow RAM word to read (0x000000 - 0x001FFF).
|
|
|
|
* @words: (in) number of words to read; (out) number of words actually read
|
|
|
|
* @data: words read from the Shadow RAM
|
|
|
|
*
|
|
|
|
* Reads 16 bit words (data buffer) from the SR using the i40e_read_nvm_aq()
|
|
|
|
* method. The buffer read is preceded by the NVM ownership take
|
|
|
|
* and followed by the release.
|
|
|
|
**/
|
|
|
|
static i40e_status i40e_read_nvm_buffer_aq(struct i40e_hw *hw, u16 offset,
|
|
|
|
u16 *words, u16 *data)
|
|
|
|
{
|
|
|
|
i40e_status ret_code;
|
|
|
|
u16 read_size = *words;
|
|
|
|
bool last_cmd = false;
|
|
|
|
u16 words_read = 0;
|
|
|
|
u16 i = 0;
|
|
|
|
|
|
|
|
do {
|
|
|
|
/* Calculate number of bytes we should read in this step.
|
|
|
|
* FVL AQ do not allow to read more than one page at a time or
|
|
|
|
* to cross page boundaries.
|
|
|
|
*/
|
|
|
|
if (offset % I40E_SR_SECTOR_SIZE_IN_WORDS)
|
|
|
|
read_size = min(*words,
|
|
|
|
(u16)(I40E_SR_SECTOR_SIZE_IN_WORDS -
|
|
|
|
(offset % I40E_SR_SECTOR_SIZE_IN_WORDS)));
|
|
|
|
else
|
|
|
|
read_size = min((*words - words_read),
|
|
|
|
I40E_SR_SECTOR_SIZE_IN_WORDS);
|
|
|
|
|
|
|
|
/* Check if this is last command, if so set proper flag */
|
|
|
|
if ((words_read + read_size) >= *words)
|
|
|
|
last_cmd = true;
|
|
|
|
|
|
|
|
ret_code = i40e_read_nvm_aq(hw, 0x0, offset, read_size,
|
|
|
|
data + words_read, last_cmd);
|
|
|
|
if (ret_code)
|
|
|
|
goto read_nvm_buffer_aq_exit;
|
|
|
|
|
|
|
|
/* Increment counter for words already read and move offset to
|
|
|
|
* new read location
|
|
|
|
*/
|
|
|
|
words_read += read_size;
|
|
|
|
offset += read_size;
|
|
|
|
} while (words_read < *words);
|
|
|
|
|
|
|
|
for (i = 0; i < *words; i++)
|
|
|
|
data[i] = le16_to_cpu(((__le16 *)data)[i]);
|
|
|
|
|
|
|
|
read_nvm_buffer_aq_exit:
|
|
|
|
*words = words_read;
|
|
|
|
return ret_code;
|
|
|
|
}
|
|
|
|
|
2015-01-24 16:58:33 +07:00
|
|
|
/**
|
|
|
|
* i40e_read_nvm_buffer - Reads Shadow RAM buffer
|
|
|
|
* @hw: pointer to the HW structure
|
|
|
|
* @offset: offset of the Shadow RAM word to read (0x000000 - 0x001FFF).
|
|
|
|
* @words: (in) number of words to read; (out) number of words actually read
|
|
|
|
* @data: words read from the Shadow RAM
|
|
|
|
*
|
|
|
|
* Reads 16 bit words (data buffer) from the SR using the i40e_read_nvm_srrd()
|
|
|
|
* method. The buffer read is preceded by the NVM ownership take
|
|
|
|
* and followed by the release.
|
|
|
|
**/
|
|
|
|
i40e_status i40e_read_nvm_buffer(struct i40e_hw *hw, u16 offset,
|
|
|
|
u16 *words, u16 *data)
|
|
|
|
{
|
2015-09-25 05:26:32 +07:00
|
|
|
enum i40e_status_code ret_code = 0;
|
|
|
|
|
|
|
|
if (hw->flags & I40E_HW_FLAG_AQ_SRCTL_ACCESS_ENABLE) {
|
|
|
|
ret_code = i40e_acquire_nvm(hw, I40E_RESOURCE_READ);
|
|
|
|
if (!ret_code) {
|
|
|
|
ret_code = i40e_read_nvm_buffer_aq(hw, offset, words,
|
|
|
|
data);
|
|
|
|
i40e_release_nvm(hw);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
ret_code = i40e_read_nvm_buffer_srctl(hw, offset, words, data);
|
|
|
|
}
|
|
|
|
return ret_code;
|
2015-01-24 16:58:33 +07:00
|
|
|
}
|
|
|
|
|
i40e/i40evf: Add nvmupdate support
This implements a state machine intended to support the userland tool for
updating the device eeprom. The state machine implements one-shot reads,
writes, multi-step write sessions, and checksum requests. If we're in the middle
of a multi-step write session, no one should fire off other writes, however, one
shot reads are valid. The userland tool is expected to keep track of its session
status, arrange the placement and ordering of the writes, and deal with the
checksum requirement.
This patch also adds nvmupdate support to ethtool callbacks.
The get_eeprom() and set_eeprom() services in ethtool are used here to
facilitate the userland NVMUpdate tool. The 'magic' value in the get and
set commands is used to pass additional control information for managing
the read and write steps.
The read operation works both as normally expected in the standard ethtool
method, as well as with the extra NVM controls. The write operation
works only for the expanded NVM functions - the normal ethtool method is
not allowed because of the NVM semaphore management needed for multipart
writes, as well as the checksum requirement.
Change-ID: I1d84a170153a9f437906744e2e350fd68fe7563d
Signed-off-by: Shannon Nelson <shannon.nelson@intel.com>
Tested-by: Jim Young <jamesx.m.young@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
2014-07-09 14:46:09 +07:00
|
|
|
/**
|
|
|
|
* i40e_write_nvm_aq - Writes Shadow RAM.
|
|
|
|
* @hw: pointer to the HW structure.
|
|
|
|
* @module_pointer: module pointer location in words from the NVM beginning
|
|
|
|
* @offset: offset in words from module start
|
|
|
|
* @words: number of words to write
|
|
|
|
* @data: buffer with words to write to the Shadow RAM
|
|
|
|
* @last_command: tells the AdminQ that this is the last command
|
|
|
|
*
|
|
|
|
* Writes a 16 bit words buffer to the Shadow RAM using the admin command.
|
|
|
|
**/
|
2014-07-30 16:02:53 +07:00
|
|
|
static i40e_status i40e_write_nvm_aq(struct i40e_hw *hw, u8 module_pointer,
|
|
|
|
u32 offset, u16 words, void *data,
|
|
|
|
bool last_command)
|
i40e/i40evf: Add nvmupdate support
This implements a state machine intended to support the userland tool for
updating the device eeprom. The state machine implements one-shot reads,
writes, multi-step write sessions, and checksum requests. If we're in the middle
of a multi-step write session, no one should fire off other writes, however, one
shot reads are valid. The userland tool is expected to keep track of its session
status, arrange the placement and ordering of the writes, and deal with the
checksum requirement.
This patch also adds nvmupdate support to ethtool callbacks.
The get_eeprom() and set_eeprom() services in ethtool are used here to
facilitate the userland NVMUpdate tool. The 'magic' value in the get and
set commands is used to pass additional control information for managing
the read and write steps.
The read operation works both as normally expected in the standard ethtool
method, as well as with the extra NVM controls. The write operation
works only for the expanded NVM functions - the normal ethtool method is
not allowed because of the NVM semaphore management needed for multipart
writes, as well as the checksum requirement.
Change-ID: I1d84a170153a9f437906744e2e350fd68fe7563d
Signed-off-by: Shannon Nelson <shannon.nelson@intel.com>
Tested-by: Jim Young <jamesx.m.young@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
2014-07-09 14:46:09 +07:00
|
|
|
{
|
|
|
|
i40e_status ret_code = I40E_ERR_NVM;
|
2015-08-29 04:55:47 +07:00
|
|
|
struct i40e_asq_cmd_details cmd_details;
|
|
|
|
|
|
|
|
memset(&cmd_details, 0, sizeof(cmd_details));
|
|
|
|
cmd_details.wb_desc = &hw->nvm_wb_desc;
|
i40e/i40evf: Add nvmupdate support
This implements a state machine intended to support the userland tool for
updating the device eeprom. The state machine implements one-shot reads,
writes, multi-step write sessions, and checksum requests. If we're in the middle
of a multi-step write session, no one should fire off other writes, however, one
shot reads are valid. The userland tool is expected to keep track of its session
status, arrange the placement and ordering of the writes, and deal with the
checksum requirement.
This patch also adds nvmupdate support to ethtool callbacks.
The get_eeprom() and set_eeprom() services in ethtool are used here to
facilitate the userland NVMUpdate tool. The 'magic' value in the get and
set commands is used to pass additional control information for managing
the read and write steps.
The read operation works both as normally expected in the standard ethtool
method, as well as with the extra NVM controls. The write operation
works only for the expanded NVM functions - the normal ethtool method is
not allowed because of the NVM semaphore management needed for multipart
writes, as well as the checksum requirement.
Change-ID: I1d84a170153a9f437906744e2e350fd68fe7563d
Signed-off-by: Shannon Nelson <shannon.nelson@intel.com>
Tested-by: Jim Young <jamesx.m.young@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
2014-07-09 14:46:09 +07:00
|
|
|
|
|
|
|
/* Here we are checking the SR limit only for the flat memory model.
|
|
|
|
* We cannot do it for the module-based model, as we did not acquire
|
|
|
|
* the NVM resource yet (we cannot get the module pointer value).
|
|
|
|
* Firmware will check the module-based model.
|
|
|
|
*/
|
|
|
|
if ((offset + words) > hw->nvm.sr_size)
|
2014-11-13 15:23:15 +07:00
|
|
|
i40e_debug(hw, I40E_DEBUG_NVM,
|
|
|
|
"NVM write error: offset %d beyond Shadow RAM limit %d\n",
|
|
|
|
(offset + words), hw->nvm.sr_size);
|
i40e/i40evf: Add nvmupdate support
This implements a state machine intended to support the userland tool for
updating the device eeprom. The state machine implements one-shot reads,
writes, multi-step write sessions, and checksum requests. If we're in the middle
of a multi-step write session, no one should fire off other writes, however, one
shot reads are valid. The userland tool is expected to keep track of its session
status, arrange the placement and ordering of the writes, and deal with the
checksum requirement.
This patch also adds nvmupdate support to ethtool callbacks.
The get_eeprom() and set_eeprom() services in ethtool are used here to
facilitate the userland NVMUpdate tool. The 'magic' value in the get and
set commands is used to pass additional control information for managing
the read and write steps.
The read operation works both as normally expected in the standard ethtool
method, as well as with the extra NVM controls. The write operation
works only for the expanded NVM functions - the normal ethtool method is
not allowed because of the NVM semaphore management needed for multipart
writes, as well as the checksum requirement.
Change-ID: I1d84a170153a9f437906744e2e350fd68fe7563d
Signed-off-by: Shannon Nelson <shannon.nelson@intel.com>
Tested-by: Jim Young <jamesx.m.young@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
2014-07-09 14:46:09 +07:00
|
|
|
else if (words > I40E_SR_SECTOR_SIZE_IN_WORDS)
|
|
|
|
/* We can write only up to 4KB (one sector), in one AQ write */
|
2014-11-13 15:23:15 +07:00
|
|
|
i40e_debug(hw, I40E_DEBUG_NVM,
|
|
|
|
"NVM write fail error: tried to write %d words, limit is %d.\n",
|
|
|
|
words, I40E_SR_SECTOR_SIZE_IN_WORDS);
|
i40e/i40evf: Add nvmupdate support
This implements a state machine intended to support the userland tool for
updating the device eeprom. The state machine implements one-shot reads,
writes, multi-step write sessions, and checksum requests. If we're in the middle
of a multi-step write session, no one should fire off other writes, however, one
shot reads are valid. The userland tool is expected to keep track of its session
status, arrange the placement and ordering of the writes, and deal with the
checksum requirement.
This patch also adds nvmupdate support to ethtool callbacks.
The get_eeprom() and set_eeprom() services in ethtool are used here to
facilitate the userland NVMUpdate tool. The 'magic' value in the get and
set commands is used to pass additional control information for managing
the read and write steps.
The read operation works both as normally expected in the standard ethtool
method, as well as with the extra NVM controls. The write operation
works only for the expanded NVM functions - the normal ethtool method is
not allowed because of the NVM semaphore management needed for multipart
writes, as well as the checksum requirement.
Change-ID: I1d84a170153a9f437906744e2e350fd68fe7563d
Signed-off-by: Shannon Nelson <shannon.nelson@intel.com>
Tested-by: Jim Young <jamesx.m.young@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
2014-07-09 14:46:09 +07:00
|
|
|
else if (((offset + (words - 1)) / I40E_SR_SECTOR_SIZE_IN_WORDS)
|
|
|
|
!= (offset / I40E_SR_SECTOR_SIZE_IN_WORDS))
|
|
|
|
/* A single write cannot spread over two sectors */
|
2014-11-13 15:23:15 +07:00
|
|
|
i40e_debug(hw, I40E_DEBUG_NVM,
|
|
|
|
"NVM write error: cannot spread over two sectors in a single write offset=%d words=%d\n",
|
|
|
|
offset, words);
|
i40e/i40evf: Add nvmupdate support
This implements a state machine intended to support the userland tool for
updating the device eeprom. The state machine implements one-shot reads,
writes, multi-step write sessions, and checksum requests. If we're in the middle
of a multi-step write session, no one should fire off other writes, however, one
shot reads are valid. The userland tool is expected to keep track of its session
status, arrange the placement and ordering of the writes, and deal with the
checksum requirement.
This patch also adds nvmupdate support to ethtool callbacks.
The get_eeprom() and set_eeprom() services in ethtool are used here to
facilitate the userland NVMUpdate tool. The 'magic' value in the get and
set commands is used to pass additional control information for managing
the read and write steps.
The read operation works both as normally expected in the standard ethtool
method, as well as with the extra NVM controls. The write operation
works only for the expanded NVM functions - the normal ethtool method is
not allowed because of the NVM semaphore management needed for multipart
writes, as well as the checksum requirement.
Change-ID: I1d84a170153a9f437906744e2e350fd68fe7563d
Signed-off-by: Shannon Nelson <shannon.nelson@intel.com>
Tested-by: Jim Young <jamesx.m.young@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
2014-07-09 14:46:09 +07:00
|
|
|
else
|
|
|
|
ret_code = i40e_aq_update_nvm(hw, module_pointer,
|
|
|
|
2 * offset, /*bytes*/
|
|
|
|
2 * words, /*bytes*/
|
2015-08-29 04:55:47 +07:00
|
|
|
data, last_command, &cmd_details);
|
i40e/i40evf: Add nvmupdate support
This implements a state machine intended to support the userland tool for
updating the device eeprom. The state machine implements one-shot reads,
writes, multi-step write sessions, and checksum requests. If we're in the middle
of a multi-step write session, no one should fire off other writes, however, one
shot reads are valid. The userland tool is expected to keep track of its session
status, arrange the placement and ordering of the writes, and deal with the
checksum requirement.
This patch also adds nvmupdate support to ethtool callbacks.
The get_eeprom() and set_eeprom() services in ethtool are used here to
facilitate the userland NVMUpdate tool. The 'magic' value in the get and
set commands is used to pass additional control information for managing
the read and write steps.
The read operation works both as normally expected in the standard ethtool
method, as well as with the extra NVM controls. The write operation
works only for the expanded NVM functions - the normal ethtool method is
not allowed because of the NVM semaphore management needed for multipart
writes, as well as the checksum requirement.
Change-ID: I1d84a170153a9f437906744e2e350fd68fe7563d
Signed-off-by: Shannon Nelson <shannon.nelson@intel.com>
Tested-by: Jim Young <jamesx.m.young@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
2014-07-09 14:46:09 +07:00
|
|
|
|
|
|
|
return ret_code;
|
|
|
|
}
|
|
|
|
|
2013-09-11 15:40:12 +07:00
|
|
|
/**
|
2014-02-06 12:51:06 +07:00
|
|
|
* i40e_calc_nvm_checksum - Calculates and returns the checksum
|
|
|
|
* @hw: pointer to hardware structure
|
|
|
|
* @checksum: pointer to the checksum
|
2013-09-11 15:40:12 +07:00
|
|
|
*
|
2014-02-06 12:51:06 +07:00
|
|
|
* This function calculates SW Checksum that covers the whole 64kB shadow RAM
|
|
|
|
* except the VPD and PCIe ALT Auto-load modules. The structure and size of VPD
|
|
|
|
* is customer specific and unknown. Therefore, this function skips all maximum
|
|
|
|
* possible size of VPD (1kB).
|
2013-09-11 15:40:12 +07:00
|
|
|
**/
|
|
|
|
static i40e_status i40e_calc_nvm_checksum(struct i40e_hw *hw,
|
|
|
|
u16 *checksum)
|
|
|
|
{
|
|
|
|
i40e_status ret_code = 0;
|
2015-01-24 16:58:33 +07:00
|
|
|
struct i40e_virt_mem vmem;
|
2013-09-11 15:40:12 +07:00
|
|
|
u16 pcie_alt_module = 0;
|
|
|
|
u16 checksum_local = 0;
|
|
|
|
u16 vpd_module = 0;
|
2015-01-24 16:58:33 +07:00
|
|
|
u16 *data;
|
|
|
|
u16 i = 0;
|
|
|
|
|
|
|
|
ret_code = i40e_allocate_virt_mem(hw, &vmem,
|
|
|
|
I40E_SR_SECTOR_SIZE_IN_WORDS * sizeof(u16));
|
|
|
|
if (ret_code)
|
|
|
|
goto i40e_calc_nvm_checksum_exit;
|
|
|
|
data = (u16 *)vmem.va;
|
2013-09-11 15:40:12 +07:00
|
|
|
|
|
|
|
/* read pointer to VPD area */
|
2013-12-11 15:17:15 +07:00
|
|
|
ret_code = i40e_read_nvm_word(hw, I40E_SR_VPD_PTR, &vpd_module);
|
2013-09-11 15:40:12 +07:00
|
|
|
if (ret_code) {
|
|
|
|
ret_code = I40E_ERR_NVM_CHECKSUM;
|
|
|
|
goto i40e_calc_nvm_checksum_exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* read pointer to PCIe Alt Auto-load module */
|
2013-12-11 15:17:15 +07:00
|
|
|
ret_code = i40e_read_nvm_word(hw, I40E_SR_PCIE_ALT_AUTO_LOAD_PTR,
|
2015-01-24 16:58:33 +07:00
|
|
|
&pcie_alt_module);
|
2013-09-11 15:40:12 +07:00
|
|
|
if (ret_code) {
|
|
|
|
ret_code = I40E_ERR_NVM_CHECKSUM;
|
|
|
|
goto i40e_calc_nvm_checksum_exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Calculate SW checksum that covers the whole 64kB shadow RAM
|
|
|
|
* except the VPD and PCIe ALT Auto-load modules
|
|
|
|
*/
|
|
|
|
for (i = 0; i < hw->nvm.sr_size; i++) {
|
2015-01-24 16:58:33 +07:00
|
|
|
/* Read SR page */
|
|
|
|
if ((i % I40E_SR_SECTOR_SIZE_IN_WORDS) == 0) {
|
|
|
|
u16 words = I40E_SR_SECTOR_SIZE_IN_WORDS;
|
|
|
|
|
|
|
|
ret_code = i40e_read_nvm_buffer(hw, i, &words, data);
|
|
|
|
if (ret_code) {
|
|
|
|
ret_code = I40E_ERR_NVM_CHECKSUM;
|
|
|
|
goto i40e_calc_nvm_checksum_exit;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-11 15:40:12 +07:00
|
|
|
/* Skip Checksum word */
|
|
|
|
if (i == I40E_SR_SW_CHECKSUM_WORD)
|
2015-01-24 16:58:33 +07:00
|
|
|
continue;
|
2013-09-11 15:40:12 +07:00
|
|
|
/* Skip VPD module (convert byte size to word count) */
|
2015-01-24 16:58:33 +07:00
|
|
|
if ((i >= (u32)vpd_module) &&
|
|
|
|
(i < ((u32)vpd_module +
|
|
|
|
(I40E_SR_VPD_MODULE_MAX_SIZE / 2)))) {
|
|
|
|
continue;
|
2013-09-11 15:40:12 +07:00
|
|
|
}
|
|
|
|
/* Skip PCIe ALT module (convert byte size to word count) */
|
2015-01-24 16:58:33 +07:00
|
|
|
if ((i >= (u32)pcie_alt_module) &&
|
|
|
|
(i < ((u32)pcie_alt_module +
|
|
|
|
(I40E_SR_PCIE_ALT_MODULE_MAX_SIZE / 2)))) {
|
|
|
|
continue;
|
2013-09-11 15:40:12 +07:00
|
|
|
}
|
|
|
|
|
2015-01-24 16:58:33 +07:00
|
|
|
checksum_local += data[i % I40E_SR_SECTOR_SIZE_IN_WORDS];
|
2013-09-11 15:40:12 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
*checksum = (u16)I40E_SR_SW_CHECKSUM_BASE - checksum_local;
|
|
|
|
|
|
|
|
i40e_calc_nvm_checksum_exit:
|
2015-01-24 16:58:33 +07:00
|
|
|
i40e_free_virt_mem(hw, &vmem);
|
2013-09-11 15:40:12 +07:00
|
|
|
return ret_code;
|
|
|
|
}
|
|
|
|
|
i40e/i40evf: Add nvmupdate support
This implements a state machine intended to support the userland tool for
updating the device eeprom. The state machine implements one-shot reads,
writes, multi-step write sessions, and checksum requests. If we're in the middle
of a multi-step write session, no one should fire off other writes, however, one
shot reads are valid. The userland tool is expected to keep track of its session
status, arrange the placement and ordering of the writes, and deal with the
checksum requirement.
This patch also adds nvmupdate support to ethtool callbacks.
The get_eeprom() and set_eeprom() services in ethtool are used here to
facilitate the userland NVMUpdate tool. The 'magic' value in the get and
set commands is used to pass additional control information for managing
the read and write steps.
The read operation works both as normally expected in the standard ethtool
method, as well as with the extra NVM controls. The write operation
works only for the expanded NVM functions - the normal ethtool method is
not allowed because of the NVM semaphore management needed for multipart
writes, as well as the checksum requirement.
Change-ID: I1d84a170153a9f437906744e2e350fd68fe7563d
Signed-off-by: Shannon Nelson <shannon.nelson@intel.com>
Tested-by: Jim Young <jamesx.m.young@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
2014-07-09 14:46:09 +07:00
|
|
|
/**
|
|
|
|
* i40e_update_nvm_checksum - Updates the NVM checksum
|
|
|
|
* @hw: pointer to hardware structure
|
|
|
|
*
|
|
|
|
* NVM ownership must be acquired before calling this function and released
|
|
|
|
* on ARQ completion event reception by caller.
|
|
|
|
* This function will commit SR to NVM.
|
|
|
|
**/
|
|
|
|
i40e_status i40e_update_nvm_checksum(struct i40e_hw *hw)
|
|
|
|
{
|
|
|
|
i40e_status ret_code = 0;
|
|
|
|
u16 checksum;
|
2015-08-27 02:14:18 +07:00
|
|
|
__le16 le_sum;
|
i40e/i40evf: Add nvmupdate support
This implements a state machine intended to support the userland tool for
updating the device eeprom. The state machine implements one-shot reads,
writes, multi-step write sessions, and checksum requests. If we're in the middle
of a multi-step write session, no one should fire off other writes, however, one
shot reads are valid. The userland tool is expected to keep track of its session
status, arrange the placement and ordering of the writes, and deal with the
checksum requirement.
This patch also adds nvmupdate support to ethtool callbacks.
The get_eeprom() and set_eeprom() services in ethtool are used here to
facilitate the userland NVMUpdate tool. The 'magic' value in the get and
set commands is used to pass additional control information for managing
the read and write steps.
The read operation works both as normally expected in the standard ethtool
method, as well as with the extra NVM controls. The write operation
works only for the expanded NVM functions - the normal ethtool method is
not allowed because of the NVM semaphore management needed for multipart
writes, as well as the checksum requirement.
Change-ID: I1d84a170153a9f437906744e2e350fd68fe7563d
Signed-off-by: Shannon Nelson <shannon.nelson@intel.com>
Tested-by: Jim Young <jamesx.m.young@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
2014-07-09 14:46:09 +07:00
|
|
|
|
|
|
|
ret_code = i40e_calc_nvm_checksum(hw, &checksum);
|
2015-08-27 02:14:18 +07:00
|
|
|
le_sum = cpu_to_le16(checksum);
|
i40e/i40evf: Add nvmupdate support
This implements a state machine intended to support the userland tool for
updating the device eeprom. The state machine implements one-shot reads,
writes, multi-step write sessions, and checksum requests. If we're in the middle
of a multi-step write session, no one should fire off other writes, however, one
shot reads are valid. The userland tool is expected to keep track of its session
status, arrange the placement and ordering of the writes, and deal with the
checksum requirement.
This patch also adds nvmupdate support to ethtool callbacks.
The get_eeprom() and set_eeprom() services in ethtool are used here to
facilitate the userland NVMUpdate tool. The 'magic' value in the get and
set commands is used to pass additional control information for managing
the read and write steps.
The read operation works both as normally expected in the standard ethtool
method, as well as with the extra NVM controls. The write operation
works only for the expanded NVM functions - the normal ethtool method is
not allowed because of the NVM semaphore management needed for multipart
writes, as well as the checksum requirement.
Change-ID: I1d84a170153a9f437906744e2e350fd68fe7563d
Signed-off-by: Shannon Nelson <shannon.nelson@intel.com>
Tested-by: Jim Young <jamesx.m.young@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
2014-07-09 14:46:09 +07:00
|
|
|
if (!ret_code)
|
|
|
|
ret_code = i40e_write_nvm_aq(hw, 0x00, I40E_SR_SW_CHECKSUM_WORD,
|
2015-08-27 02:14:18 +07:00
|
|
|
1, &le_sum, true);
|
i40e/i40evf: Add nvmupdate support
This implements a state machine intended to support the userland tool for
updating the device eeprom. The state machine implements one-shot reads,
writes, multi-step write sessions, and checksum requests. If we're in the middle
of a multi-step write session, no one should fire off other writes, however, one
shot reads are valid. The userland tool is expected to keep track of its session
status, arrange the placement and ordering of the writes, and deal with the
checksum requirement.
This patch also adds nvmupdate support to ethtool callbacks.
The get_eeprom() and set_eeprom() services in ethtool are used here to
facilitate the userland NVMUpdate tool. The 'magic' value in the get and
set commands is used to pass additional control information for managing
the read and write steps.
The read operation works both as normally expected in the standard ethtool
method, as well as with the extra NVM controls. The write operation
works only for the expanded NVM functions - the normal ethtool method is
not allowed because of the NVM semaphore management needed for multipart
writes, as well as the checksum requirement.
Change-ID: I1d84a170153a9f437906744e2e350fd68fe7563d
Signed-off-by: Shannon Nelson <shannon.nelson@intel.com>
Tested-by: Jim Young <jamesx.m.young@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
2014-07-09 14:46:09 +07:00
|
|
|
|
|
|
|
return ret_code;
|
|
|
|
}
|
|
|
|
|
2013-09-11 15:40:12 +07:00
|
|
|
/**
|
2014-02-06 12:51:06 +07:00
|
|
|
* i40e_validate_nvm_checksum - Validate EEPROM checksum
|
|
|
|
* @hw: pointer to hardware structure
|
|
|
|
* @checksum: calculated checksum
|
2013-09-11 15:40:12 +07:00
|
|
|
*
|
2014-02-06 12:51:06 +07:00
|
|
|
* Performs checksum calculation and validates the NVM SW checksum. If the
|
|
|
|
* caller does not need checksum, the value can be NULL.
|
2013-09-11 15:40:12 +07:00
|
|
|
**/
|
|
|
|
i40e_status i40e_validate_nvm_checksum(struct i40e_hw *hw,
|
|
|
|
u16 *checksum)
|
|
|
|
{
|
|
|
|
i40e_status ret_code = 0;
|
|
|
|
u16 checksum_sr = 0;
|
2014-01-18 06:36:31 +07:00
|
|
|
u16 checksum_local = 0;
|
2013-09-11 15:40:12 +07:00
|
|
|
|
|
|
|
ret_code = i40e_calc_nvm_checksum(hw, &checksum_local);
|
|
|
|
if (ret_code)
|
2014-06-04 11:22:36 +07:00
|
|
|
goto i40e_validate_nvm_checksum_exit;
|
2013-09-11 15:40:12 +07:00
|
|
|
|
|
|
|
/* Do not use i40e_read_nvm_word() because we do not want to take
|
|
|
|
* the synchronization semaphores twice here.
|
|
|
|
*/
|
2013-12-11 15:17:15 +07:00
|
|
|
i40e_read_nvm_word(hw, I40E_SR_SW_CHECKSUM_WORD, &checksum_sr);
|
2013-09-11 15:40:12 +07:00
|
|
|
|
|
|
|
/* Verify read checksum from EEPROM is the same as
|
|
|
|
* calculated checksum
|
|
|
|
*/
|
|
|
|
if (checksum_local != checksum_sr)
|
|
|
|
ret_code = I40E_ERR_NVM_CHECKSUM;
|
|
|
|
|
|
|
|
/* If the user cares, return the calculated checksum */
|
|
|
|
if (checksum)
|
|
|
|
*checksum = checksum_local;
|
|
|
|
|
|
|
|
i40e_validate_nvm_checksum_exit:
|
|
|
|
return ret_code;
|
|
|
|
}
|
i40e/i40evf: Add nvmupdate support
This implements a state machine intended to support the userland tool for
updating the device eeprom. The state machine implements one-shot reads,
writes, multi-step write sessions, and checksum requests. If we're in the middle
of a multi-step write session, no one should fire off other writes, however, one
shot reads are valid. The userland tool is expected to keep track of its session
status, arrange the placement and ordering of the writes, and deal with the
checksum requirement.
This patch also adds nvmupdate support to ethtool callbacks.
The get_eeprom() and set_eeprom() services in ethtool are used here to
facilitate the userland NVMUpdate tool. The 'magic' value in the get and
set commands is used to pass additional control information for managing
the read and write steps.
The read operation works both as normally expected in the standard ethtool
method, as well as with the extra NVM controls. The write operation
works only for the expanded NVM functions - the normal ethtool method is
not allowed because of the NVM semaphore management needed for multipart
writes, as well as the checksum requirement.
Change-ID: I1d84a170153a9f437906744e2e350fd68fe7563d
Signed-off-by: Shannon Nelson <shannon.nelson@intel.com>
Tested-by: Jim Young <jamesx.m.young@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
2014-07-09 14:46:09 +07:00
|
|
|
|
|
|
|
static i40e_status i40e_nvmupd_state_init(struct i40e_hw *hw,
|
|
|
|
struct i40e_nvm_access *cmd,
|
2015-07-24 03:54:33 +07:00
|
|
|
u8 *bytes, int *perrno);
|
i40e/i40evf: Add nvmupdate support
This implements a state machine intended to support the userland tool for
updating the device eeprom. The state machine implements one-shot reads,
writes, multi-step write sessions, and checksum requests. If we're in the middle
of a multi-step write session, no one should fire off other writes, however, one
shot reads are valid. The userland tool is expected to keep track of its session
status, arrange the placement and ordering of the writes, and deal with the
checksum requirement.
This patch also adds nvmupdate support to ethtool callbacks.
The get_eeprom() and set_eeprom() services in ethtool are used here to
facilitate the userland NVMUpdate tool. The 'magic' value in the get and
set commands is used to pass additional control information for managing
the read and write steps.
The read operation works both as normally expected in the standard ethtool
method, as well as with the extra NVM controls. The write operation
works only for the expanded NVM functions - the normal ethtool method is
not allowed because of the NVM semaphore management needed for multipart
writes, as well as the checksum requirement.
Change-ID: I1d84a170153a9f437906744e2e350fd68fe7563d
Signed-off-by: Shannon Nelson <shannon.nelson@intel.com>
Tested-by: Jim Young <jamesx.m.young@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
2014-07-09 14:46:09 +07:00
|
|
|
static i40e_status i40e_nvmupd_state_reading(struct i40e_hw *hw,
|
|
|
|
struct i40e_nvm_access *cmd,
|
2015-07-24 03:54:33 +07:00
|
|
|
u8 *bytes, int *perrno);
|
i40e/i40evf: Add nvmupdate support
This implements a state machine intended to support the userland tool for
updating the device eeprom. The state machine implements one-shot reads,
writes, multi-step write sessions, and checksum requests. If we're in the middle
of a multi-step write session, no one should fire off other writes, however, one
shot reads are valid. The userland tool is expected to keep track of its session
status, arrange the placement and ordering of the writes, and deal with the
checksum requirement.
This patch also adds nvmupdate support to ethtool callbacks.
The get_eeprom() and set_eeprom() services in ethtool are used here to
facilitate the userland NVMUpdate tool. The 'magic' value in the get and
set commands is used to pass additional control information for managing
the read and write steps.
The read operation works both as normally expected in the standard ethtool
method, as well as with the extra NVM controls. The write operation
works only for the expanded NVM functions - the normal ethtool method is
not allowed because of the NVM semaphore management needed for multipart
writes, as well as the checksum requirement.
Change-ID: I1d84a170153a9f437906744e2e350fd68fe7563d
Signed-off-by: Shannon Nelson <shannon.nelson@intel.com>
Tested-by: Jim Young <jamesx.m.young@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
2014-07-09 14:46:09 +07:00
|
|
|
static i40e_status i40e_nvmupd_state_writing(struct i40e_hw *hw,
|
|
|
|
struct i40e_nvm_access *cmd,
|
|
|
|
u8 *bytes, int *errno);
|
|
|
|
static enum i40e_nvmupd_cmd i40e_nvmupd_validate_command(struct i40e_hw *hw,
|
|
|
|
struct i40e_nvm_access *cmd,
|
2015-07-24 03:54:33 +07:00
|
|
|
int *perrno);
|
i40e/i40evf: Add nvmupdate support
This implements a state machine intended to support the userland tool for
updating the device eeprom. The state machine implements one-shot reads,
writes, multi-step write sessions, and checksum requests. If we're in the middle
of a multi-step write session, no one should fire off other writes, however, one
shot reads are valid. The userland tool is expected to keep track of its session
status, arrange the placement and ordering of the writes, and deal with the
checksum requirement.
This patch also adds nvmupdate support to ethtool callbacks.
The get_eeprom() and set_eeprom() services in ethtool are used here to
facilitate the userland NVMUpdate tool. The 'magic' value in the get and
set commands is used to pass additional control information for managing
the read and write steps.
The read operation works both as normally expected in the standard ethtool
method, as well as with the extra NVM controls. The write operation
works only for the expanded NVM functions - the normal ethtool method is
not allowed because of the NVM semaphore management needed for multipart
writes, as well as the checksum requirement.
Change-ID: I1d84a170153a9f437906744e2e350fd68fe7563d
Signed-off-by: Shannon Nelson <shannon.nelson@intel.com>
Tested-by: Jim Young <jamesx.m.young@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
2014-07-09 14:46:09 +07:00
|
|
|
static i40e_status i40e_nvmupd_nvm_erase(struct i40e_hw *hw,
|
|
|
|
struct i40e_nvm_access *cmd,
|
2015-07-24 03:54:33 +07:00
|
|
|
int *perrno);
|
i40e/i40evf: Add nvmupdate support
This implements a state machine intended to support the userland tool for
updating the device eeprom. The state machine implements one-shot reads,
writes, multi-step write sessions, and checksum requests. If we're in the middle
of a multi-step write session, no one should fire off other writes, however, one
shot reads are valid. The userland tool is expected to keep track of its session
status, arrange the placement and ordering of the writes, and deal with the
checksum requirement.
This patch also adds nvmupdate support to ethtool callbacks.
The get_eeprom() and set_eeprom() services in ethtool are used here to
facilitate the userland NVMUpdate tool. The 'magic' value in the get and
set commands is used to pass additional control information for managing
the read and write steps.
The read operation works both as normally expected in the standard ethtool
method, as well as with the extra NVM controls. The write operation
works only for the expanded NVM functions - the normal ethtool method is
not allowed because of the NVM semaphore management needed for multipart
writes, as well as the checksum requirement.
Change-ID: I1d84a170153a9f437906744e2e350fd68fe7563d
Signed-off-by: Shannon Nelson <shannon.nelson@intel.com>
Tested-by: Jim Young <jamesx.m.young@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
2014-07-09 14:46:09 +07:00
|
|
|
static i40e_status i40e_nvmupd_nvm_write(struct i40e_hw *hw,
|
|
|
|
struct i40e_nvm_access *cmd,
|
2015-07-24 03:54:33 +07:00
|
|
|
u8 *bytes, int *perrno);
|
i40e/i40evf: Add nvmupdate support
This implements a state machine intended to support the userland tool for
updating the device eeprom. The state machine implements one-shot reads,
writes, multi-step write sessions, and checksum requests. If we're in the middle
of a multi-step write session, no one should fire off other writes, however, one
shot reads are valid. The userland tool is expected to keep track of its session
status, arrange the placement and ordering of the writes, and deal with the
checksum requirement.
This patch also adds nvmupdate support to ethtool callbacks.
The get_eeprom() and set_eeprom() services in ethtool are used here to
facilitate the userland NVMUpdate tool. The 'magic' value in the get and
set commands is used to pass additional control information for managing
the read and write steps.
The read operation works both as normally expected in the standard ethtool
method, as well as with the extra NVM controls. The write operation
works only for the expanded NVM functions - the normal ethtool method is
not allowed because of the NVM semaphore management needed for multipart
writes, as well as the checksum requirement.
Change-ID: I1d84a170153a9f437906744e2e350fd68fe7563d
Signed-off-by: Shannon Nelson <shannon.nelson@intel.com>
Tested-by: Jim Young <jamesx.m.young@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
2014-07-09 14:46:09 +07:00
|
|
|
static i40e_status i40e_nvmupd_nvm_read(struct i40e_hw *hw,
|
|
|
|
struct i40e_nvm_access *cmd,
|
2015-07-24 03:54:33 +07:00
|
|
|
u8 *bytes, int *perrno);
|
2015-08-29 04:55:50 +07:00
|
|
|
static i40e_status i40e_nvmupd_exec_aq(struct i40e_hw *hw,
|
|
|
|
struct i40e_nvm_access *cmd,
|
|
|
|
u8 *bytes, int *perrno);
|
2015-08-29 04:55:51 +07:00
|
|
|
static i40e_status i40e_nvmupd_get_aq_result(struct i40e_hw *hw,
|
|
|
|
struct i40e_nvm_access *cmd,
|
|
|
|
u8 *bytes, int *perrno);
|
i40e/i40evf: Add nvmupdate support
This implements a state machine intended to support the userland tool for
updating the device eeprom. The state machine implements one-shot reads,
writes, multi-step write sessions, and checksum requests. If we're in the middle
of a multi-step write session, no one should fire off other writes, however, one
shot reads are valid. The userland tool is expected to keep track of its session
status, arrange the placement and ordering of the writes, and deal with the
checksum requirement.
This patch also adds nvmupdate support to ethtool callbacks.
The get_eeprom() and set_eeprom() services in ethtool are used here to
facilitate the userland NVMUpdate tool. The 'magic' value in the get and
set commands is used to pass additional control information for managing
the read and write steps.
The read operation works both as normally expected in the standard ethtool
method, as well as with the extra NVM controls. The write operation
works only for the expanded NVM functions - the normal ethtool method is
not allowed because of the NVM semaphore management needed for multipart
writes, as well as the checksum requirement.
Change-ID: I1d84a170153a9f437906744e2e350fd68fe7563d
Signed-off-by: Shannon Nelson <shannon.nelson@intel.com>
Tested-by: Jim Young <jamesx.m.young@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
2014-07-09 14:46:09 +07:00
|
|
|
static inline u8 i40e_nvmupd_get_module(u32 val)
|
|
|
|
{
|
|
|
|
return (u8)(val & I40E_NVM_MOD_PNT_MASK);
|
|
|
|
}
|
|
|
|
static inline u8 i40e_nvmupd_get_transaction(u32 val)
|
|
|
|
{
|
|
|
|
return (u8)((val & I40E_NVM_TRANS_MASK) >> I40E_NVM_TRANS_SHIFT);
|
|
|
|
}
|
|
|
|
|
2015-09-29 01:12:31 +07:00
|
|
|
static const char * const i40e_nvm_update_state_str[] = {
|
2014-11-13 15:23:15 +07:00
|
|
|
"I40E_NVMUPD_INVALID",
|
|
|
|
"I40E_NVMUPD_READ_CON",
|
|
|
|
"I40E_NVMUPD_READ_SNT",
|
|
|
|
"I40E_NVMUPD_READ_LCB",
|
|
|
|
"I40E_NVMUPD_READ_SA",
|
|
|
|
"I40E_NVMUPD_WRITE_ERA",
|
|
|
|
"I40E_NVMUPD_WRITE_CON",
|
|
|
|
"I40E_NVMUPD_WRITE_SNT",
|
|
|
|
"I40E_NVMUPD_WRITE_LCB",
|
|
|
|
"I40E_NVMUPD_WRITE_SA",
|
|
|
|
"I40E_NVMUPD_CSUM_CON",
|
|
|
|
"I40E_NVMUPD_CSUM_SA",
|
|
|
|
"I40E_NVMUPD_CSUM_LCB",
|
2015-08-29 04:55:48 +07:00
|
|
|
"I40E_NVMUPD_STATUS",
|
2015-08-29 04:55:50 +07:00
|
|
|
"I40E_NVMUPD_EXEC_AQ",
|
2015-08-29 04:55:51 +07:00
|
|
|
"I40E_NVMUPD_GET_AQ_RESULT",
|
2014-11-13 15:23:15 +07:00
|
|
|
};
|
|
|
|
|
i40e/i40evf: Add nvmupdate support
This implements a state machine intended to support the userland tool for
updating the device eeprom. The state machine implements one-shot reads,
writes, multi-step write sessions, and checksum requests. If we're in the middle
of a multi-step write session, no one should fire off other writes, however, one
shot reads are valid. The userland tool is expected to keep track of its session
status, arrange the placement and ordering of the writes, and deal with the
checksum requirement.
This patch also adds nvmupdate support to ethtool callbacks.
The get_eeprom() and set_eeprom() services in ethtool are used here to
facilitate the userland NVMUpdate tool. The 'magic' value in the get and
set commands is used to pass additional control information for managing
the read and write steps.
The read operation works both as normally expected in the standard ethtool
method, as well as with the extra NVM controls. The write operation
works only for the expanded NVM functions - the normal ethtool method is
not allowed because of the NVM semaphore management needed for multipart
writes, as well as the checksum requirement.
Change-ID: I1d84a170153a9f437906744e2e350fd68fe7563d
Signed-off-by: Shannon Nelson <shannon.nelson@intel.com>
Tested-by: Jim Young <jamesx.m.young@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
2014-07-09 14:46:09 +07:00
|
|
|
/**
|
|
|
|
* i40e_nvmupd_command - Process an NVM update command
|
|
|
|
* @hw: pointer to hardware structure
|
|
|
|
* @cmd: pointer to nvm update command
|
|
|
|
* @bytes: pointer to the data buffer
|
2015-07-24 03:54:33 +07:00
|
|
|
* @perrno: pointer to return error code
|
i40e/i40evf: Add nvmupdate support
This implements a state machine intended to support the userland tool for
updating the device eeprom. The state machine implements one-shot reads,
writes, multi-step write sessions, and checksum requests. If we're in the middle
of a multi-step write session, no one should fire off other writes, however, one
shot reads are valid. The userland tool is expected to keep track of its session
status, arrange the placement and ordering of the writes, and deal with the
checksum requirement.
This patch also adds nvmupdate support to ethtool callbacks.
The get_eeprom() and set_eeprom() services in ethtool are used here to
facilitate the userland NVMUpdate tool. The 'magic' value in the get and
set commands is used to pass additional control information for managing
the read and write steps.
The read operation works both as normally expected in the standard ethtool
method, as well as with the extra NVM controls. The write operation
works only for the expanded NVM functions - the normal ethtool method is
not allowed because of the NVM semaphore management needed for multipart
writes, as well as the checksum requirement.
Change-ID: I1d84a170153a9f437906744e2e350fd68fe7563d
Signed-off-by: Shannon Nelson <shannon.nelson@intel.com>
Tested-by: Jim Young <jamesx.m.young@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
2014-07-09 14:46:09 +07:00
|
|
|
*
|
|
|
|
* Dispatches command depending on what update state is current
|
|
|
|
**/
|
|
|
|
i40e_status i40e_nvmupd_command(struct i40e_hw *hw,
|
|
|
|
struct i40e_nvm_access *cmd,
|
2015-07-24 03:54:33 +07:00
|
|
|
u8 *bytes, int *perrno)
|
i40e/i40evf: Add nvmupdate support
This implements a state machine intended to support the userland tool for
updating the device eeprom. The state machine implements one-shot reads,
writes, multi-step write sessions, and checksum requests. If we're in the middle
of a multi-step write session, no one should fire off other writes, however, one
shot reads are valid. The userland tool is expected to keep track of its session
status, arrange the placement and ordering of the writes, and deal with the
checksum requirement.
This patch also adds nvmupdate support to ethtool callbacks.
The get_eeprom() and set_eeprom() services in ethtool are used here to
facilitate the userland NVMUpdate tool. The 'magic' value in the get and
set commands is used to pass additional control information for managing
the read and write steps.
The read operation works both as normally expected in the standard ethtool
method, as well as with the extra NVM controls. The write operation
works only for the expanded NVM functions - the normal ethtool method is
not allowed because of the NVM semaphore management needed for multipart
writes, as well as the checksum requirement.
Change-ID: I1d84a170153a9f437906744e2e350fd68fe7563d
Signed-off-by: Shannon Nelson <shannon.nelson@intel.com>
Tested-by: Jim Young <jamesx.m.young@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
2014-07-09 14:46:09 +07:00
|
|
|
{
|
|
|
|
i40e_status status;
|
2015-08-29 04:55:48 +07:00
|
|
|
enum i40e_nvmupd_cmd upd_cmd;
|
i40e/i40evf: Add nvmupdate support
This implements a state machine intended to support the userland tool for
updating the device eeprom. The state machine implements one-shot reads,
writes, multi-step write sessions, and checksum requests. If we're in the middle
of a multi-step write session, no one should fire off other writes, however, one
shot reads are valid. The userland tool is expected to keep track of its session
status, arrange the placement and ordering of the writes, and deal with the
checksum requirement.
This patch also adds nvmupdate support to ethtool callbacks.
The get_eeprom() and set_eeprom() services in ethtool are used here to
facilitate the userland NVMUpdate tool. The 'magic' value in the get and
set commands is used to pass additional control information for managing
the read and write steps.
The read operation works both as normally expected in the standard ethtool
method, as well as with the extra NVM controls. The write operation
works only for the expanded NVM functions - the normal ethtool method is
not allowed because of the NVM semaphore management needed for multipart
writes, as well as the checksum requirement.
Change-ID: I1d84a170153a9f437906744e2e350fd68fe7563d
Signed-off-by: Shannon Nelson <shannon.nelson@intel.com>
Tested-by: Jim Young <jamesx.m.young@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
2014-07-09 14:46:09 +07:00
|
|
|
|
|
|
|
/* assume success */
|
2015-07-24 03:54:33 +07:00
|
|
|
*perrno = 0;
|
i40e/i40evf: Add nvmupdate support
This implements a state machine intended to support the userland tool for
updating the device eeprom. The state machine implements one-shot reads,
writes, multi-step write sessions, and checksum requests. If we're in the middle
of a multi-step write session, no one should fire off other writes, however, one
shot reads are valid. The userland tool is expected to keep track of its session
status, arrange the placement and ordering of the writes, and deal with the
checksum requirement.
This patch also adds nvmupdate support to ethtool callbacks.
The get_eeprom() and set_eeprom() services in ethtool are used here to
facilitate the userland NVMUpdate tool. The 'magic' value in the get and
set commands is used to pass additional control information for managing
the read and write steps.
The read operation works both as normally expected in the standard ethtool
method, as well as with the extra NVM controls. The write operation
works only for the expanded NVM functions - the normal ethtool method is
not allowed because of the NVM semaphore management needed for multipart
writes, as well as the checksum requirement.
Change-ID: I1d84a170153a9f437906744e2e350fd68fe7563d
Signed-off-by: Shannon Nelson <shannon.nelson@intel.com>
Tested-by: Jim Young <jamesx.m.young@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
2014-07-09 14:46:09 +07:00
|
|
|
|
2015-08-29 04:55:48 +07:00
|
|
|
/* early check for status command and debug msgs */
|
|
|
|
upd_cmd = i40e_nvmupd_validate_command(hw, cmd, perrno);
|
|
|
|
|
|
|
|
i40e_debug(hw, I40E_DEBUG_NVM, "%s state %d nvm_release_on_hold %d\n",
|
|
|
|
i40e_nvm_update_state_str[upd_cmd],
|
|
|
|
hw->nvmupd_state,
|
|
|
|
hw->aq.nvm_release_on_done);
|
|
|
|
|
|
|
|
if (upd_cmd == I40E_NVMUPD_INVALID) {
|
|
|
|
*perrno = -EFAULT;
|
|
|
|
i40e_debug(hw, I40E_DEBUG_NVM,
|
|
|
|
"i40e_nvmupd_validate_command returns %d errno %d\n",
|
|
|
|
upd_cmd, *perrno);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* a status request returns immediately rather than
|
|
|
|
* going into the state machine
|
|
|
|
*/
|
|
|
|
if (upd_cmd == I40E_NVMUPD_STATUS) {
|
|
|
|
bytes[0] = hw->nvmupd_state;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
i40e/i40evf: Add nvmupdate support
This implements a state machine intended to support the userland tool for
updating the device eeprom. The state machine implements one-shot reads,
writes, multi-step write sessions, and checksum requests. If we're in the middle
of a multi-step write session, no one should fire off other writes, however, one
shot reads are valid. The userland tool is expected to keep track of its session
status, arrange the placement and ordering of the writes, and deal with the
checksum requirement.
This patch also adds nvmupdate support to ethtool callbacks.
The get_eeprom() and set_eeprom() services in ethtool are used here to
facilitate the userland NVMUpdate tool. The 'magic' value in the get and
set commands is used to pass additional control information for managing
the read and write steps.
The read operation works both as normally expected in the standard ethtool
method, as well as with the extra NVM controls. The write operation
works only for the expanded NVM functions - the normal ethtool method is
not allowed because of the NVM semaphore management needed for multipart
writes, as well as the checksum requirement.
Change-ID: I1d84a170153a9f437906744e2e350fd68fe7563d
Signed-off-by: Shannon Nelson <shannon.nelson@intel.com>
Tested-by: Jim Young <jamesx.m.young@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
2014-07-09 14:46:09 +07:00
|
|
|
switch (hw->nvmupd_state) {
|
|
|
|
case I40E_NVMUPD_STATE_INIT:
|
2015-07-24 03:54:33 +07:00
|
|
|
status = i40e_nvmupd_state_init(hw, cmd, bytes, perrno);
|
i40e/i40evf: Add nvmupdate support
This implements a state machine intended to support the userland tool for
updating the device eeprom. The state machine implements one-shot reads,
writes, multi-step write sessions, and checksum requests. If we're in the middle
of a multi-step write session, no one should fire off other writes, however, one
shot reads are valid. The userland tool is expected to keep track of its session
status, arrange the placement and ordering of the writes, and deal with the
checksum requirement.
This patch also adds nvmupdate support to ethtool callbacks.
The get_eeprom() and set_eeprom() services in ethtool are used here to
facilitate the userland NVMUpdate tool. The 'magic' value in the get and
set commands is used to pass additional control information for managing
the read and write steps.
The read operation works both as normally expected in the standard ethtool
method, as well as with the extra NVM controls. The write operation
works only for the expanded NVM functions - the normal ethtool method is
not allowed because of the NVM semaphore management needed for multipart
writes, as well as the checksum requirement.
Change-ID: I1d84a170153a9f437906744e2e350fd68fe7563d
Signed-off-by: Shannon Nelson <shannon.nelson@intel.com>
Tested-by: Jim Young <jamesx.m.young@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
2014-07-09 14:46:09 +07:00
|
|
|
break;
|
|
|
|
|
|
|
|
case I40E_NVMUPD_STATE_READING:
|
2015-07-24 03:54:33 +07:00
|
|
|
status = i40e_nvmupd_state_reading(hw, cmd, bytes, perrno);
|
i40e/i40evf: Add nvmupdate support
This implements a state machine intended to support the userland tool for
updating the device eeprom. The state machine implements one-shot reads,
writes, multi-step write sessions, and checksum requests. If we're in the middle
of a multi-step write session, no one should fire off other writes, however, one
shot reads are valid. The userland tool is expected to keep track of its session
status, arrange the placement and ordering of the writes, and deal with the
checksum requirement.
This patch also adds nvmupdate support to ethtool callbacks.
The get_eeprom() and set_eeprom() services in ethtool are used here to
facilitate the userland NVMUpdate tool. The 'magic' value in the get and
set commands is used to pass additional control information for managing
the read and write steps.
The read operation works both as normally expected in the standard ethtool
method, as well as with the extra NVM controls. The write operation
works only for the expanded NVM functions - the normal ethtool method is
not allowed because of the NVM semaphore management needed for multipart
writes, as well as the checksum requirement.
Change-ID: I1d84a170153a9f437906744e2e350fd68fe7563d
Signed-off-by: Shannon Nelson <shannon.nelson@intel.com>
Tested-by: Jim Young <jamesx.m.young@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
2014-07-09 14:46:09 +07:00
|
|
|
break;
|
|
|
|
|
|
|
|
case I40E_NVMUPD_STATE_WRITING:
|
2015-07-24 03:54:33 +07:00
|
|
|
status = i40e_nvmupd_state_writing(hw, cmd, bytes, perrno);
|
i40e/i40evf: Add nvmupdate support
This implements a state machine intended to support the userland tool for
updating the device eeprom. The state machine implements one-shot reads,
writes, multi-step write sessions, and checksum requests. If we're in the middle
of a multi-step write session, no one should fire off other writes, however, one
shot reads are valid. The userland tool is expected to keep track of its session
status, arrange the placement and ordering of the writes, and deal with the
checksum requirement.
This patch also adds nvmupdate support to ethtool callbacks.
The get_eeprom() and set_eeprom() services in ethtool are used here to
facilitate the userland NVMUpdate tool. The 'magic' value in the get and
set commands is used to pass additional control information for managing
the read and write steps.
The read operation works both as normally expected in the standard ethtool
method, as well as with the extra NVM controls. The write operation
works only for the expanded NVM functions - the normal ethtool method is
not allowed because of the NVM semaphore management needed for multipart
writes, as well as the checksum requirement.
Change-ID: I1d84a170153a9f437906744e2e350fd68fe7563d
Signed-off-by: Shannon Nelson <shannon.nelson@intel.com>
Tested-by: Jim Young <jamesx.m.young@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
2014-07-09 14:46:09 +07:00
|
|
|
break;
|
|
|
|
|
2015-08-29 04:55:49 +07:00
|
|
|
case I40E_NVMUPD_STATE_INIT_WAIT:
|
|
|
|
case I40E_NVMUPD_STATE_WRITE_WAIT:
|
|
|
|
status = I40E_ERR_NOT_READY;
|
|
|
|
*perrno = -EBUSY;
|
|
|
|
break;
|
|
|
|
|
i40e/i40evf: Add nvmupdate support
This implements a state machine intended to support the userland tool for
updating the device eeprom. The state machine implements one-shot reads,
writes, multi-step write sessions, and checksum requests. If we're in the middle
of a multi-step write session, no one should fire off other writes, however, one
shot reads are valid. The userland tool is expected to keep track of its session
status, arrange the placement and ordering of the writes, and deal with the
checksum requirement.
This patch also adds nvmupdate support to ethtool callbacks.
The get_eeprom() and set_eeprom() services in ethtool are used here to
facilitate the userland NVMUpdate tool. The 'magic' value in the get and
set commands is used to pass additional control information for managing
the read and write steps.
The read operation works both as normally expected in the standard ethtool
method, as well as with the extra NVM controls. The write operation
works only for the expanded NVM functions - the normal ethtool method is
not allowed because of the NVM semaphore management needed for multipart
writes, as well as the checksum requirement.
Change-ID: I1d84a170153a9f437906744e2e350fd68fe7563d
Signed-off-by: Shannon Nelson <shannon.nelson@intel.com>
Tested-by: Jim Young <jamesx.m.young@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
2014-07-09 14:46:09 +07:00
|
|
|
default:
|
|
|
|
/* invalid state, should never happen */
|
2014-11-13 15:23:15 +07:00
|
|
|
i40e_debug(hw, I40E_DEBUG_NVM,
|
|
|
|
"NVMUPD: no such state %d\n", hw->nvmupd_state);
|
i40e/i40evf: Add nvmupdate support
This implements a state machine intended to support the userland tool for
updating the device eeprom. The state machine implements one-shot reads,
writes, multi-step write sessions, and checksum requests. If we're in the middle
of a multi-step write session, no one should fire off other writes, however, one
shot reads are valid. The userland tool is expected to keep track of its session
status, arrange the placement and ordering of the writes, and deal with the
checksum requirement.
This patch also adds nvmupdate support to ethtool callbacks.
The get_eeprom() and set_eeprom() services in ethtool are used here to
facilitate the userland NVMUpdate tool. The 'magic' value in the get and
set commands is used to pass additional control information for managing
the read and write steps.
The read operation works both as normally expected in the standard ethtool
method, as well as with the extra NVM controls. The write operation
works only for the expanded NVM functions - the normal ethtool method is
not allowed because of the NVM semaphore management needed for multipart
writes, as well as the checksum requirement.
Change-ID: I1d84a170153a9f437906744e2e350fd68fe7563d
Signed-off-by: Shannon Nelson <shannon.nelson@intel.com>
Tested-by: Jim Young <jamesx.m.young@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
2014-07-09 14:46:09 +07:00
|
|
|
status = I40E_NOT_SUPPORTED;
|
2015-07-24 03:54:33 +07:00
|
|
|
*perrno = -ESRCH;
|
i40e/i40evf: Add nvmupdate support
This implements a state machine intended to support the userland tool for
updating the device eeprom. The state machine implements one-shot reads,
writes, multi-step write sessions, and checksum requests. If we're in the middle
of a multi-step write session, no one should fire off other writes, however, one
shot reads are valid. The userland tool is expected to keep track of its session
status, arrange the placement and ordering of the writes, and deal with the
checksum requirement.
This patch also adds nvmupdate support to ethtool callbacks.
The get_eeprom() and set_eeprom() services in ethtool are used here to
facilitate the userland NVMUpdate tool. The 'magic' value in the get and
set commands is used to pass additional control information for managing
the read and write steps.
The read operation works both as normally expected in the standard ethtool
method, as well as with the extra NVM controls. The write operation
works only for the expanded NVM functions - the normal ethtool method is
not allowed because of the NVM semaphore management needed for multipart
writes, as well as the checksum requirement.
Change-ID: I1d84a170153a9f437906744e2e350fd68fe7563d
Signed-off-by: Shannon Nelson <shannon.nelson@intel.com>
Tested-by: Jim Young <jamesx.m.young@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
2014-07-09 14:46:09 +07:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* i40e_nvmupd_state_init - Handle NVM update state Init
|
|
|
|
* @hw: pointer to hardware structure
|
|
|
|
* @cmd: pointer to nvm update command buffer
|
|
|
|
* @bytes: pointer to the data buffer
|
2015-07-24 03:54:33 +07:00
|
|
|
* @perrno: pointer to return error code
|
i40e/i40evf: Add nvmupdate support
This implements a state machine intended to support the userland tool for
updating the device eeprom. The state machine implements one-shot reads,
writes, multi-step write sessions, and checksum requests. If we're in the middle
of a multi-step write session, no one should fire off other writes, however, one
shot reads are valid. The userland tool is expected to keep track of its session
status, arrange the placement and ordering of the writes, and deal with the
checksum requirement.
This patch also adds nvmupdate support to ethtool callbacks.
The get_eeprom() and set_eeprom() services in ethtool are used here to
facilitate the userland NVMUpdate tool. The 'magic' value in the get and
set commands is used to pass additional control information for managing
the read and write steps.
The read operation works both as normally expected in the standard ethtool
method, as well as with the extra NVM controls. The write operation
works only for the expanded NVM functions - the normal ethtool method is
not allowed because of the NVM semaphore management needed for multipart
writes, as well as the checksum requirement.
Change-ID: I1d84a170153a9f437906744e2e350fd68fe7563d
Signed-off-by: Shannon Nelson <shannon.nelson@intel.com>
Tested-by: Jim Young <jamesx.m.young@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
2014-07-09 14:46:09 +07:00
|
|
|
*
|
|
|
|
* Process legitimate commands of the Init state and conditionally set next
|
|
|
|
* state. Reject all other commands.
|
|
|
|
**/
|
|
|
|
static i40e_status i40e_nvmupd_state_init(struct i40e_hw *hw,
|
|
|
|
struct i40e_nvm_access *cmd,
|
2015-07-24 03:54:33 +07:00
|
|
|
u8 *bytes, int *perrno)
|
i40e/i40evf: Add nvmupdate support
This implements a state machine intended to support the userland tool for
updating the device eeprom. The state machine implements one-shot reads,
writes, multi-step write sessions, and checksum requests. If we're in the middle
of a multi-step write session, no one should fire off other writes, however, one
shot reads are valid. The userland tool is expected to keep track of its session
status, arrange the placement and ordering of the writes, and deal with the
checksum requirement.
This patch also adds nvmupdate support to ethtool callbacks.
The get_eeprom() and set_eeprom() services in ethtool are used here to
facilitate the userland NVMUpdate tool. The 'magic' value in the get and
set commands is used to pass additional control information for managing
the read and write steps.
The read operation works both as normally expected in the standard ethtool
method, as well as with the extra NVM controls. The write operation
works only for the expanded NVM functions - the normal ethtool method is
not allowed because of the NVM semaphore management needed for multipart
writes, as well as the checksum requirement.
Change-ID: I1d84a170153a9f437906744e2e350fd68fe7563d
Signed-off-by: Shannon Nelson <shannon.nelson@intel.com>
Tested-by: Jim Young <jamesx.m.young@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
2014-07-09 14:46:09 +07:00
|
|
|
{
|
|
|
|
i40e_status status = 0;
|
|
|
|
enum i40e_nvmupd_cmd upd_cmd;
|
|
|
|
|
2015-07-24 03:54:33 +07:00
|
|
|
upd_cmd = i40e_nvmupd_validate_command(hw, cmd, perrno);
|
i40e/i40evf: Add nvmupdate support
This implements a state machine intended to support the userland tool for
updating the device eeprom. The state machine implements one-shot reads,
writes, multi-step write sessions, and checksum requests. If we're in the middle
of a multi-step write session, no one should fire off other writes, however, one
shot reads are valid. The userland tool is expected to keep track of its session
status, arrange the placement and ordering of the writes, and deal with the
checksum requirement.
This patch also adds nvmupdate support to ethtool callbacks.
The get_eeprom() and set_eeprom() services in ethtool are used here to
facilitate the userland NVMUpdate tool. The 'magic' value in the get and
set commands is used to pass additional control information for managing
the read and write steps.
The read operation works both as normally expected in the standard ethtool
method, as well as with the extra NVM controls. The write operation
works only for the expanded NVM functions - the normal ethtool method is
not allowed because of the NVM semaphore management needed for multipart
writes, as well as the checksum requirement.
Change-ID: I1d84a170153a9f437906744e2e350fd68fe7563d
Signed-off-by: Shannon Nelson <shannon.nelson@intel.com>
Tested-by: Jim Young <jamesx.m.young@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
2014-07-09 14:46:09 +07:00
|
|
|
|
|
|
|
switch (upd_cmd) {
|
|
|
|
case I40E_NVMUPD_READ_SA:
|
|
|
|
status = i40e_acquire_nvm(hw, I40E_RESOURCE_READ);
|
|
|
|
if (status) {
|
2015-07-24 03:54:33 +07:00
|
|
|
*perrno = i40e_aq_rc_to_posix(status,
|
2014-11-13 15:23:22 +07:00
|
|
|
hw->aq.asq_last_status);
|
i40e/i40evf: Add nvmupdate support
This implements a state machine intended to support the userland tool for
updating the device eeprom. The state machine implements one-shot reads,
writes, multi-step write sessions, and checksum requests. If we're in the middle
of a multi-step write session, no one should fire off other writes, however, one
shot reads are valid. The userland tool is expected to keep track of its session
status, arrange the placement and ordering of the writes, and deal with the
checksum requirement.
This patch also adds nvmupdate support to ethtool callbacks.
The get_eeprom() and set_eeprom() services in ethtool are used here to
facilitate the userland NVMUpdate tool. The 'magic' value in the get and
set commands is used to pass additional control information for managing
the read and write steps.
The read operation works both as normally expected in the standard ethtool
method, as well as with the extra NVM controls. The write operation
works only for the expanded NVM functions - the normal ethtool method is
not allowed because of the NVM semaphore management needed for multipart
writes, as well as the checksum requirement.
Change-ID: I1d84a170153a9f437906744e2e350fd68fe7563d
Signed-off-by: Shannon Nelson <shannon.nelson@intel.com>
Tested-by: Jim Young <jamesx.m.young@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
2014-07-09 14:46:09 +07:00
|
|
|
} else {
|
2015-07-24 03:54:33 +07:00
|
|
|
status = i40e_nvmupd_nvm_read(hw, cmd, bytes, perrno);
|
i40e/i40evf: Add nvmupdate support
This implements a state machine intended to support the userland tool for
updating the device eeprom. The state machine implements one-shot reads,
writes, multi-step write sessions, and checksum requests. If we're in the middle
of a multi-step write session, no one should fire off other writes, however, one
shot reads are valid. The userland tool is expected to keep track of its session
status, arrange the placement and ordering of the writes, and deal with the
checksum requirement.
This patch also adds nvmupdate support to ethtool callbacks.
The get_eeprom() and set_eeprom() services in ethtool are used here to
facilitate the userland NVMUpdate tool. The 'magic' value in the get and
set commands is used to pass additional control information for managing
the read and write steps.
The read operation works both as normally expected in the standard ethtool
method, as well as with the extra NVM controls. The write operation
works only for the expanded NVM functions - the normal ethtool method is
not allowed because of the NVM semaphore management needed for multipart
writes, as well as the checksum requirement.
Change-ID: I1d84a170153a9f437906744e2e350fd68fe7563d
Signed-off-by: Shannon Nelson <shannon.nelson@intel.com>
Tested-by: Jim Young <jamesx.m.young@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
2014-07-09 14:46:09 +07:00
|
|
|
i40e_release_nvm(hw);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case I40E_NVMUPD_READ_SNT:
|
|
|
|
status = i40e_acquire_nvm(hw, I40E_RESOURCE_READ);
|
|
|
|
if (status) {
|
2015-07-24 03:54:33 +07:00
|
|
|
*perrno = i40e_aq_rc_to_posix(status,
|
2014-11-13 15:23:22 +07:00
|
|
|
hw->aq.asq_last_status);
|
i40e/i40evf: Add nvmupdate support
This implements a state machine intended to support the userland tool for
updating the device eeprom. The state machine implements one-shot reads,
writes, multi-step write sessions, and checksum requests. If we're in the middle
of a multi-step write session, no one should fire off other writes, however, one
shot reads are valid. The userland tool is expected to keep track of its session
status, arrange the placement and ordering of the writes, and deal with the
checksum requirement.
This patch also adds nvmupdate support to ethtool callbacks.
The get_eeprom() and set_eeprom() services in ethtool are used here to
facilitate the userland NVMUpdate tool. The 'magic' value in the get and
set commands is used to pass additional control information for managing
the read and write steps.
The read operation works both as normally expected in the standard ethtool
method, as well as with the extra NVM controls. The write operation
works only for the expanded NVM functions - the normal ethtool method is
not allowed because of the NVM semaphore management needed for multipart
writes, as well as the checksum requirement.
Change-ID: I1d84a170153a9f437906744e2e350fd68fe7563d
Signed-off-by: Shannon Nelson <shannon.nelson@intel.com>
Tested-by: Jim Young <jamesx.m.young@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
2014-07-09 14:46:09 +07:00
|
|
|
} else {
|
2015-07-24 03:54:33 +07:00
|
|
|
status = i40e_nvmupd_nvm_read(hw, cmd, bytes, perrno);
|
2014-11-13 15:23:20 +07:00
|
|
|
if (status)
|
|
|
|
i40e_release_nvm(hw);
|
|
|
|
else
|
|
|
|
hw->nvmupd_state = I40E_NVMUPD_STATE_READING;
|
i40e/i40evf: Add nvmupdate support
This implements a state machine intended to support the userland tool for
updating the device eeprom. The state machine implements one-shot reads,
writes, multi-step write sessions, and checksum requests. If we're in the middle
of a multi-step write session, no one should fire off other writes, however, one
shot reads are valid. The userland tool is expected to keep track of its session
status, arrange the placement and ordering of the writes, and deal with the
checksum requirement.
This patch also adds nvmupdate support to ethtool callbacks.
The get_eeprom() and set_eeprom() services in ethtool are used here to
facilitate the userland NVMUpdate tool. The 'magic' value in the get and
set commands is used to pass additional control information for managing
the read and write steps.
The read operation works both as normally expected in the standard ethtool
method, as well as with the extra NVM controls. The write operation
works only for the expanded NVM functions - the normal ethtool method is
not allowed because of the NVM semaphore management needed for multipart
writes, as well as the checksum requirement.
Change-ID: I1d84a170153a9f437906744e2e350fd68fe7563d
Signed-off-by: Shannon Nelson <shannon.nelson@intel.com>
Tested-by: Jim Young <jamesx.m.young@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
2014-07-09 14:46:09 +07:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case I40E_NVMUPD_WRITE_ERA:
|
|
|
|
status = i40e_acquire_nvm(hw, I40E_RESOURCE_WRITE);
|
|
|
|
if (status) {
|
2015-07-24 03:54:33 +07:00
|
|
|
*perrno = i40e_aq_rc_to_posix(status,
|
2014-11-13 15:23:22 +07:00
|
|
|
hw->aq.asq_last_status);
|
i40e/i40evf: Add nvmupdate support
This implements a state machine intended to support the userland tool for
updating the device eeprom. The state machine implements one-shot reads,
writes, multi-step write sessions, and checksum requests. If we're in the middle
of a multi-step write session, no one should fire off other writes, however, one
shot reads are valid. The userland tool is expected to keep track of its session
status, arrange the placement and ordering of the writes, and deal with the
checksum requirement.
This patch also adds nvmupdate support to ethtool callbacks.
The get_eeprom() and set_eeprom() services in ethtool are used here to
facilitate the userland NVMUpdate tool. The 'magic' value in the get and
set commands is used to pass additional control information for managing
the read and write steps.
The read operation works both as normally expected in the standard ethtool
method, as well as with the extra NVM controls. The write operation
works only for the expanded NVM functions - the normal ethtool method is
not allowed because of the NVM semaphore management needed for multipart
writes, as well as the checksum requirement.
Change-ID: I1d84a170153a9f437906744e2e350fd68fe7563d
Signed-off-by: Shannon Nelson <shannon.nelson@intel.com>
Tested-by: Jim Young <jamesx.m.young@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
2014-07-09 14:46:09 +07:00
|
|
|
} else {
|
2015-07-24 03:54:33 +07:00
|
|
|
status = i40e_nvmupd_nvm_erase(hw, cmd, perrno);
|
2015-08-29 04:55:49 +07:00
|
|
|
if (status) {
|
i40e/i40evf: Add nvmupdate support
This implements a state machine intended to support the userland tool for
updating the device eeprom. The state machine implements one-shot reads,
writes, multi-step write sessions, and checksum requests. If we're in the middle
of a multi-step write session, no one should fire off other writes, however, one
shot reads are valid. The userland tool is expected to keep track of its session
status, arrange the placement and ordering of the writes, and deal with the
checksum requirement.
This patch also adds nvmupdate support to ethtool callbacks.
The get_eeprom() and set_eeprom() services in ethtool are used here to
facilitate the userland NVMUpdate tool. The 'magic' value in the get and
set commands is used to pass additional control information for managing
the read and write steps.
The read operation works both as normally expected in the standard ethtool
method, as well as with the extra NVM controls. The write operation
works only for the expanded NVM functions - the normal ethtool method is
not allowed because of the NVM semaphore management needed for multipart
writes, as well as the checksum requirement.
Change-ID: I1d84a170153a9f437906744e2e350fd68fe7563d
Signed-off-by: Shannon Nelson <shannon.nelson@intel.com>
Tested-by: Jim Young <jamesx.m.young@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
2014-07-09 14:46:09 +07:00
|
|
|
i40e_release_nvm(hw);
|
2015-08-29 04:55:49 +07:00
|
|
|
} else {
|
i40e/i40evf: Add nvmupdate support
This implements a state machine intended to support the userland tool for
updating the device eeprom. The state machine implements one-shot reads,
writes, multi-step write sessions, and checksum requests. If we're in the middle
of a multi-step write session, no one should fire off other writes, however, one
shot reads are valid. The userland tool is expected to keep track of its session
status, arrange the placement and ordering of the writes, and deal with the
checksum requirement.
This patch also adds nvmupdate support to ethtool callbacks.
The get_eeprom() and set_eeprom() services in ethtool are used here to
facilitate the userland NVMUpdate tool. The 'magic' value in the get and
set commands is used to pass additional control information for managing
the read and write steps.
The read operation works both as normally expected in the standard ethtool
method, as well as with the extra NVM controls. The write operation
works only for the expanded NVM functions - the normal ethtool method is
not allowed because of the NVM semaphore management needed for multipart
writes, as well as the checksum requirement.
Change-ID: I1d84a170153a9f437906744e2e350fd68fe7563d
Signed-off-by: Shannon Nelson <shannon.nelson@intel.com>
Tested-by: Jim Young <jamesx.m.young@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
2014-07-09 14:46:09 +07:00
|
|
|
hw->aq.nvm_release_on_done = true;
|
2015-08-29 04:55:49 +07:00
|
|
|
hw->nvmupd_state = I40E_NVMUPD_STATE_INIT_WAIT;
|
|
|
|
}
|
i40e/i40evf: Add nvmupdate support
This implements a state machine intended to support the userland tool for
updating the device eeprom. The state machine implements one-shot reads,
writes, multi-step write sessions, and checksum requests. If we're in the middle
of a multi-step write session, no one should fire off other writes, however, one
shot reads are valid. The userland tool is expected to keep track of its session
status, arrange the placement and ordering of the writes, and deal with the
checksum requirement.
This patch also adds nvmupdate support to ethtool callbacks.
The get_eeprom() and set_eeprom() services in ethtool are used here to
facilitate the userland NVMUpdate tool. The 'magic' value in the get and
set commands is used to pass additional control information for managing
the read and write steps.
The read operation works both as normally expected in the standard ethtool
method, as well as with the extra NVM controls. The write operation
works only for the expanded NVM functions - the normal ethtool method is
not allowed because of the NVM semaphore management needed for multipart
writes, as well as the checksum requirement.
Change-ID: I1d84a170153a9f437906744e2e350fd68fe7563d
Signed-off-by: Shannon Nelson <shannon.nelson@intel.com>
Tested-by: Jim Young <jamesx.m.young@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
2014-07-09 14:46:09 +07:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case I40E_NVMUPD_WRITE_SA:
|
|
|
|
status = i40e_acquire_nvm(hw, I40E_RESOURCE_WRITE);
|
|
|
|
if (status) {
|
2015-07-24 03:54:33 +07:00
|
|
|
*perrno = i40e_aq_rc_to_posix(status,
|
2014-11-13 15:23:22 +07:00
|
|
|
hw->aq.asq_last_status);
|
i40e/i40evf: Add nvmupdate support
This implements a state machine intended to support the userland tool for
updating the device eeprom. The state machine implements one-shot reads,
writes, multi-step write sessions, and checksum requests. If we're in the middle
of a multi-step write session, no one should fire off other writes, however, one
shot reads are valid. The userland tool is expected to keep track of its session
status, arrange the placement and ordering of the writes, and deal with the
checksum requirement.
This patch also adds nvmupdate support to ethtool callbacks.
The get_eeprom() and set_eeprom() services in ethtool are used here to
facilitate the userland NVMUpdate tool. The 'magic' value in the get and
set commands is used to pass additional control information for managing
the read and write steps.
The read operation works both as normally expected in the standard ethtool
method, as well as with the extra NVM controls. The write operation
works only for the expanded NVM functions - the normal ethtool method is
not allowed because of the NVM semaphore management needed for multipart
writes, as well as the checksum requirement.
Change-ID: I1d84a170153a9f437906744e2e350fd68fe7563d
Signed-off-by: Shannon Nelson <shannon.nelson@intel.com>
Tested-by: Jim Young <jamesx.m.young@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
2014-07-09 14:46:09 +07:00
|
|
|
} else {
|
2015-07-24 03:54:33 +07:00
|
|
|
status = i40e_nvmupd_nvm_write(hw, cmd, bytes, perrno);
|
2015-08-29 04:55:49 +07:00
|
|
|
if (status) {
|
i40e/i40evf: Add nvmupdate support
This implements a state machine intended to support the userland tool for
updating the device eeprom. The state machine implements one-shot reads,
writes, multi-step write sessions, and checksum requests. If we're in the middle
of a multi-step write session, no one should fire off other writes, however, one
shot reads are valid. The userland tool is expected to keep track of its session
status, arrange the placement and ordering of the writes, and deal with the
checksum requirement.
This patch also adds nvmupdate support to ethtool callbacks.
The get_eeprom() and set_eeprom() services in ethtool are used here to
facilitate the userland NVMUpdate tool. The 'magic' value in the get and
set commands is used to pass additional control information for managing
the read and write steps.
The read operation works both as normally expected in the standard ethtool
method, as well as with the extra NVM controls. The write operation
works only for the expanded NVM functions - the normal ethtool method is
not allowed because of the NVM semaphore management needed for multipart
writes, as well as the checksum requirement.
Change-ID: I1d84a170153a9f437906744e2e350fd68fe7563d
Signed-off-by: Shannon Nelson <shannon.nelson@intel.com>
Tested-by: Jim Young <jamesx.m.young@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
2014-07-09 14:46:09 +07:00
|
|
|
i40e_release_nvm(hw);
|
2015-08-29 04:55:49 +07:00
|
|
|
} else {
|
i40e/i40evf: Add nvmupdate support
This implements a state machine intended to support the userland tool for
updating the device eeprom. The state machine implements one-shot reads,
writes, multi-step write sessions, and checksum requests. If we're in the middle
of a multi-step write session, no one should fire off other writes, however, one
shot reads are valid. The userland tool is expected to keep track of its session
status, arrange the placement and ordering of the writes, and deal with the
checksum requirement.
This patch also adds nvmupdate support to ethtool callbacks.
The get_eeprom() and set_eeprom() services in ethtool are used here to
facilitate the userland NVMUpdate tool. The 'magic' value in the get and
set commands is used to pass additional control information for managing
the read and write steps.
The read operation works both as normally expected in the standard ethtool
method, as well as with the extra NVM controls. The write operation
works only for the expanded NVM functions - the normal ethtool method is
not allowed because of the NVM semaphore management needed for multipart
writes, as well as the checksum requirement.
Change-ID: I1d84a170153a9f437906744e2e350fd68fe7563d
Signed-off-by: Shannon Nelson <shannon.nelson@intel.com>
Tested-by: Jim Young <jamesx.m.young@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
2014-07-09 14:46:09 +07:00
|
|
|
hw->aq.nvm_release_on_done = true;
|
2015-08-29 04:55:49 +07:00
|
|
|
hw->nvmupd_state = I40E_NVMUPD_STATE_INIT_WAIT;
|
|
|
|
}
|
i40e/i40evf: Add nvmupdate support
This implements a state machine intended to support the userland tool for
updating the device eeprom. The state machine implements one-shot reads,
writes, multi-step write sessions, and checksum requests. If we're in the middle
of a multi-step write session, no one should fire off other writes, however, one
shot reads are valid. The userland tool is expected to keep track of its session
status, arrange the placement and ordering of the writes, and deal with the
checksum requirement.
This patch also adds nvmupdate support to ethtool callbacks.
The get_eeprom() and set_eeprom() services in ethtool are used here to
facilitate the userland NVMUpdate tool. The 'magic' value in the get and
set commands is used to pass additional control information for managing
the read and write steps.
The read operation works both as normally expected in the standard ethtool
method, as well as with the extra NVM controls. The write operation
works only for the expanded NVM functions - the normal ethtool method is
not allowed because of the NVM semaphore management needed for multipart
writes, as well as the checksum requirement.
Change-ID: I1d84a170153a9f437906744e2e350fd68fe7563d
Signed-off-by: Shannon Nelson <shannon.nelson@intel.com>
Tested-by: Jim Young <jamesx.m.young@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
2014-07-09 14:46:09 +07:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case I40E_NVMUPD_WRITE_SNT:
|
|
|
|
status = i40e_acquire_nvm(hw, I40E_RESOURCE_WRITE);
|
|
|
|
if (status) {
|
2015-07-24 03:54:33 +07:00
|
|
|
*perrno = i40e_aq_rc_to_posix(status,
|
2014-11-13 15:23:22 +07:00
|
|
|
hw->aq.asq_last_status);
|
i40e/i40evf: Add nvmupdate support
This implements a state machine intended to support the userland tool for
updating the device eeprom. The state machine implements one-shot reads,
writes, multi-step write sessions, and checksum requests. If we're in the middle
of a multi-step write session, no one should fire off other writes, however, one
shot reads are valid. The userland tool is expected to keep track of its session
status, arrange the placement and ordering of the writes, and deal with the
checksum requirement.
This patch also adds nvmupdate support to ethtool callbacks.
The get_eeprom() and set_eeprom() services in ethtool are used here to
facilitate the userland NVMUpdate tool. The 'magic' value in the get and
set commands is used to pass additional control information for managing
the read and write steps.
The read operation works both as normally expected in the standard ethtool
method, as well as with the extra NVM controls. The write operation
works only for the expanded NVM functions - the normal ethtool method is
not allowed because of the NVM semaphore management needed for multipart
writes, as well as the checksum requirement.
Change-ID: I1d84a170153a9f437906744e2e350fd68fe7563d
Signed-off-by: Shannon Nelson <shannon.nelson@intel.com>
Tested-by: Jim Young <jamesx.m.young@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
2014-07-09 14:46:09 +07:00
|
|
|
} else {
|
2015-07-24 03:54:33 +07:00
|
|
|
status = i40e_nvmupd_nvm_write(hw, cmd, bytes, perrno);
|
2014-11-13 15:23:20 +07:00
|
|
|
if (status)
|
|
|
|
i40e_release_nvm(hw);
|
|
|
|
else
|
2015-08-29 04:55:49 +07:00
|
|
|
hw->nvmupd_state = I40E_NVMUPD_STATE_WRITE_WAIT;
|
i40e/i40evf: Add nvmupdate support
This implements a state machine intended to support the userland tool for
updating the device eeprom. The state machine implements one-shot reads,
writes, multi-step write sessions, and checksum requests. If we're in the middle
of a multi-step write session, no one should fire off other writes, however, one
shot reads are valid. The userland tool is expected to keep track of its session
status, arrange the placement and ordering of the writes, and deal with the
checksum requirement.
This patch also adds nvmupdate support to ethtool callbacks.
The get_eeprom() and set_eeprom() services in ethtool are used here to
facilitate the userland NVMUpdate tool. The 'magic' value in the get and
set commands is used to pass additional control information for managing
the read and write steps.
The read operation works both as normally expected in the standard ethtool
method, as well as with the extra NVM controls. The write operation
works only for the expanded NVM functions - the normal ethtool method is
not allowed because of the NVM semaphore management needed for multipart
writes, as well as the checksum requirement.
Change-ID: I1d84a170153a9f437906744e2e350fd68fe7563d
Signed-off-by: Shannon Nelson <shannon.nelson@intel.com>
Tested-by: Jim Young <jamesx.m.young@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
2014-07-09 14:46:09 +07:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case I40E_NVMUPD_CSUM_SA:
|
|
|
|
status = i40e_acquire_nvm(hw, I40E_RESOURCE_WRITE);
|
|
|
|
if (status) {
|
2015-07-24 03:54:33 +07:00
|
|
|
*perrno = i40e_aq_rc_to_posix(status,
|
2014-11-13 15:23:22 +07:00
|
|
|
hw->aq.asq_last_status);
|
i40e/i40evf: Add nvmupdate support
This implements a state machine intended to support the userland tool for
updating the device eeprom. The state machine implements one-shot reads,
writes, multi-step write sessions, and checksum requests. If we're in the middle
of a multi-step write session, no one should fire off other writes, however, one
shot reads are valid. The userland tool is expected to keep track of its session
status, arrange the placement and ordering of the writes, and deal with the
checksum requirement.
This patch also adds nvmupdate support to ethtool callbacks.
The get_eeprom() and set_eeprom() services in ethtool are used here to
facilitate the userland NVMUpdate tool. The 'magic' value in the get and
set commands is used to pass additional control information for managing
the read and write steps.
The read operation works both as normally expected in the standard ethtool
method, as well as with the extra NVM controls. The write operation
works only for the expanded NVM functions - the normal ethtool method is
not allowed because of the NVM semaphore management needed for multipart
writes, as well as the checksum requirement.
Change-ID: I1d84a170153a9f437906744e2e350fd68fe7563d
Signed-off-by: Shannon Nelson <shannon.nelson@intel.com>
Tested-by: Jim Young <jamesx.m.young@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
2014-07-09 14:46:09 +07:00
|
|
|
} else {
|
|
|
|
status = i40e_update_nvm_checksum(hw);
|
|
|
|
if (status) {
|
2015-07-24 03:54:33 +07:00
|
|
|
*perrno = hw->aq.asq_last_status ?
|
2014-11-13 15:23:22 +07:00
|
|
|
i40e_aq_rc_to_posix(status,
|
|
|
|
hw->aq.asq_last_status) :
|
i40e/i40evf: Add nvmupdate support
This implements a state machine intended to support the userland tool for
updating the device eeprom. The state machine implements one-shot reads,
writes, multi-step write sessions, and checksum requests. If we're in the middle
of a multi-step write session, no one should fire off other writes, however, one
shot reads are valid. The userland tool is expected to keep track of its session
status, arrange the placement and ordering of the writes, and deal with the
checksum requirement.
This patch also adds nvmupdate support to ethtool callbacks.
The get_eeprom() and set_eeprom() services in ethtool are used here to
facilitate the userland NVMUpdate tool. The 'magic' value in the get and
set commands is used to pass additional control information for managing
the read and write steps.
The read operation works both as normally expected in the standard ethtool
method, as well as with the extra NVM controls. The write operation
works only for the expanded NVM functions - the normal ethtool method is
not allowed because of the NVM semaphore management needed for multipart
writes, as well as the checksum requirement.
Change-ID: I1d84a170153a9f437906744e2e350fd68fe7563d
Signed-off-by: Shannon Nelson <shannon.nelson@intel.com>
Tested-by: Jim Young <jamesx.m.young@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
2014-07-09 14:46:09 +07:00
|
|
|
-EIO;
|
|
|
|
i40e_release_nvm(hw);
|
|
|
|
} else {
|
|
|
|
hw->aq.nvm_release_on_done = true;
|
2015-08-29 04:55:49 +07:00
|
|
|
hw->nvmupd_state = I40E_NVMUPD_STATE_INIT_WAIT;
|
i40e/i40evf: Add nvmupdate support
This implements a state machine intended to support the userland tool for
updating the device eeprom. The state machine implements one-shot reads,
writes, multi-step write sessions, and checksum requests. If we're in the middle
of a multi-step write session, no one should fire off other writes, however, one
shot reads are valid. The userland tool is expected to keep track of its session
status, arrange the placement and ordering of the writes, and deal with the
checksum requirement.
This patch also adds nvmupdate support to ethtool callbacks.
The get_eeprom() and set_eeprom() services in ethtool are used here to
facilitate the userland NVMUpdate tool. The 'magic' value in the get and
set commands is used to pass additional control information for managing
the read and write steps.
The read operation works both as normally expected in the standard ethtool
method, as well as with the extra NVM controls. The write operation
works only for the expanded NVM functions - the normal ethtool method is
not allowed because of the NVM semaphore management needed for multipart
writes, as well as the checksum requirement.
Change-ID: I1d84a170153a9f437906744e2e350fd68fe7563d
Signed-off-by: Shannon Nelson <shannon.nelson@intel.com>
Tested-by: Jim Young <jamesx.m.young@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
2014-07-09 14:46:09 +07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2015-08-29 04:55:50 +07:00
|
|
|
case I40E_NVMUPD_EXEC_AQ:
|
|
|
|
status = i40e_nvmupd_exec_aq(hw, cmd, bytes, perrno);
|
|
|
|
break;
|
|
|
|
|
2015-08-29 04:55:51 +07:00
|
|
|
case I40E_NVMUPD_GET_AQ_RESULT:
|
|
|
|
status = i40e_nvmupd_get_aq_result(hw, cmd, bytes, perrno);
|
|
|
|
break;
|
|
|
|
|
i40e/i40evf: Add nvmupdate support
This implements a state machine intended to support the userland tool for
updating the device eeprom. The state machine implements one-shot reads,
writes, multi-step write sessions, and checksum requests. If we're in the middle
of a multi-step write session, no one should fire off other writes, however, one
shot reads are valid. The userland tool is expected to keep track of its session
status, arrange the placement and ordering of the writes, and deal with the
checksum requirement.
This patch also adds nvmupdate support to ethtool callbacks.
The get_eeprom() and set_eeprom() services in ethtool are used here to
facilitate the userland NVMUpdate tool. The 'magic' value in the get and
set commands is used to pass additional control information for managing
the read and write steps.
The read operation works both as normally expected in the standard ethtool
method, as well as with the extra NVM controls. The write operation
works only for the expanded NVM functions - the normal ethtool method is
not allowed because of the NVM semaphore management needed for multipart
writes, as well as the checksum requirement.
Change-ID: I1d84a170153a9f437906744e2e350fd68fe7563d
Signed-off-by: Shannon Nelson <shannon.nelson@intel.com>
Tested-by: Jim Young <jamesx.m.young@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
2014-07-09 14:46:09 +07:00
|
|
|
default:
|
2014-11-13 15:23:15 +07:00
|
|
|
i40e_debug(hw, I40E_DEBUG_NVM,
|
|
|
|
"NVMUPD: bad cmd %s in init state\n",
|
|
|
|
i40e_nvm_update_state_str[upd_cmd]);
|
i40e/i40evf: Add nvmupdate support
This implements a state machine intended to support the userland tool for
updating the device eeprom. The state machine implements one-shot reads,
writes, multi-step write sessions, and checksum requests. If we're in the middle
of a multi-step write session, no one should fire off other writes, however, one
shot reads are valid. The userland tool is expected to keep track of its session
status, arrange the placement and ordering of the writes, and deal with the
checksum requirement.
This patch also adds nvmupdate support to ethtool callbacks.
The get_eeprom() and set_eeprom() services in ethtool are used here to
facilitate the userland NVMUpdate tool. The 'magic' value in the get and
set commands is used to pass additional control information for managing
the read and write steps.
The read operation works both as normally expected in the standard ethtool
method, as well as with the extra NVM controls. The write operation
works only for the expanded NVM functions - the normal ethtool method is
not allowed because of the NVM semaphore management needed for multipart
writes, as well as the checksum requirement.
Change-ID: I1d84a170153a9f437906744e2e350fd68fe7563d
Signed-off-by: Shannon Nelson <shannon.nelson@intel.com>
Tested-by: Jim Young <jamesx.m.young@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
2014-07-09 14:46:09 +07:00
|
|
|
status = I40E_ERR_NVM;
|
2015-07-24 03:54:33 +07:00
|
|
|
*perrno = -ESRCH;
|
i40e/i40evf: Add nvmupdate support
This implements a state machine intended to support the userland tool for
updating the device eeprom. The state machine implements one-shot reads,
writes, multi-step write sessions, and checksum requests. If we're in the middle
of a multi-step write session, no one should fire off other writes, however, one
shot reads are valid. The userland tool is expected to keep track of its session
status, arrange the placement and ordering of the writes, and deal with the
checksum requirement.
This patch also adds nvmupdate support to ethtool callbacks.
The get_eeprom() and set_eeprom() services in ethtool are used here to
facilitate the userland NVMUpdate tool. The 'magic' value in the get and
set commands is used to pass additional control information for managing
the read and write steps.
The read operation works both as normally expected in the standard ethtool
method, as well as with the extra NVM controls. The write operation
works only for the expanded NVM functions - the normal ethtool method is
not allowed because of the NVM semaphore management needed for multipart
writes, as well as the checksum requirement.
Change-ID: I1d84a170153a9f437906744e2e350fd68fe7563d
Signed-off-by: Shannon Nelson <shannon.nelson@intel.com>
Tested-by: Jim Young <jamesx.m.young@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
2014-07-09 14:46:09 +07:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* i40e_nvmupd_state_reading - Handle NVM update state Reading
|
|
|
|
* @hw: pointer to hardware structure
|
|
|
|
* @cmd: pointer to nvm update command buffer
|
|
|
|
* @bytes: pointer to the data buffer
|
2015-07-24 03:54:33 +07:00
|
|
|
* @perrno: pointer to return error code
|
i40e/i40evf: Add nvmupdate support
This implements a state machine intended to support the userland tool for
updating the device eeprom. The state machine implements one-shot reads,
writes, multi-step write sessions, and checksum requests. If we're in the middle
of a multi-step write session, no one should fire off other writes, however, one
shot reads are valid. The userland tool is expected to keep track of its session
status, arrange the placement and ordering of the writes, and deal with the
checksum requirement.
This patch also adds nvmupdate support to ethtool callbacks.
The get_eeprom() and set_eeprom() services in ethtool are used here to
facilitate the userland NVMUpdate tool. The 'magic' value in the get and
set commands is used to pass additional control information for managing
the read and write steps.
The read operation works both as normally expected in the standard ethtool
method, as well as with the extra NVM controls. The write operation
works only for the expanded NVM functions - the normal ethtool method is
not allowed because of the NVM semaphore management needed for multipart
writes, as well as the checksum requirement.
Change-ID: I1d84a170153a9f437906744e2e350fd68fe7563d
Signed-off-by: Shannon Nelson <shannon.nelson@intel.com>
Tested-by: Jim Young <jamesx.m.young@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
2014-07-09 14:46:09 +07:00
|
|
|
*
|
|
|
|
* NVM ownership is already held. Process legitimate commands and set any
|
|
|
|
* change in state; reject all other commands.
|
|
|
|
**/
|
|
|
|
static i40e_status i40e_nvmupd_state_reading(struct i40e_hw *hw,
|
|
|
|
struct i40e_nvm_access *cmd,
|
2015-07-24 03:54:33 +07:00
|
|
|
u8 *bytes, int *perrno)
|
i40e/i40evf: Add nvmupdate support
This implements a state machine intended to support the userland tool for
updating the device eeprom. The state machine implements one-shot reads,
writes, multi-step write sessions, and checksum requests. If we're in the middle
of a multi-step write session, no one should fire off other writes, however, one
shot reads are valid. The userland tool is expected to keep track of its session
status, arrange the placement and ordering of the writes, and deal with the
checksum requirement.
This patch also adds nvmupdate support to ethtool callbacks.
The get_eeprom() and set_eeprom() services in ethtool are used here to
facilitate the userland NVMUpdate tool. The 'magic' value in the get and
set commands is used to pass additional control information for managing
the read and write steps.
The read operation works both as normally expected in the standard ethtool
method, as well as with the extra NVM controls. The write operation
works only for the expanded NVM functions - the normal ethtool method is
not allowed because of the NVM semaphore management needed for multipart
writes, as well as the checksum requirement.
Change-ID: I1d84a170153a9f437906744e2e350fd68fe7563d
Signed-off-by: Shannon Nelson <shannon.nelson@intel.com>
Tested-by: Jim Young <jamesx.m.young@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
2014-07-09 14:46:09 +07:00
|
|
|
{
|
2015-08-29 04:55:49 +07:00
|
|
|
i40e_status status = 0;
|
i40e/i40evf: Add nvmupdate support
This implements a state machine intended to support the userland tool for
updating the device eeprom. The state machine implements one-shot reads,
writes, multi-step write sessions, and checksum requests. If we're in the middle
of a multi-step write session, no one should fire off other writes, however, one
shot reads are valid. The userland tool is expected to keep track of its session
status, arrange the placement and ordering of the writes, and deal with the
checksum requirement.
This patch also adds nvmupdate support to ethtool callbacks.
The get_eeprom() and set_eeprom() services in ethtool are used here to
facilitate the userland NVMUpdate tool. The 'magic' value in the get and
set commands is used to pass additional control information for managing
the read and write steps.
The read operation works both as normally expected in the standard ethtool
method, as well as with the extra NVM controls. The write operation
works only for the expanded NVM functions - the normal ethtool method is
not allowed because of the NVM semaphore management needed for multipart
writes, as well as the checksum requirement.
Change-ID: I1d84a170153a9f437906744e2e350fd68fe7563d
Signed-off-by: Shannon Nelson <shannon.nelson@intel.com>
Tested-by: Jim Young <jamesx.m.young@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
2014-07-09 14:46:09 +07:00
|
|
|
enum i40e_nvmupd_cmd upd_cmd;
|
|
|
|
|
2015-07-24 03:54:33 +07:00
|
|
|
upd_cmd = i40e_nvmupd_validate_command(hw, cmd, perrno);
|
i40e/i40evf: Add nvmupdate support
This implements a state machine intended to support the userland tool for
updating the device eeprom. The state machine implements one-shot reads,
writes, multi-step write sessions, and checksum requests. If we're in the middle
of a multi-step write session, no one should fire off other writes, however, one
shot reads are valid. The userland tool is expected to keep track of its session
status, arrange the placement and ordering of the writes, and deal with the
checksum requirement.
This patch also adds nvmupdate support to ethtool callbacks.
The get_eeprom() and set_eeprom() services in ethtool are used here to
facilitate the userland NVMUpdate tool. The 'magic' value in the get and
set commands is used to pass additional control information for managing
the read and write steps.
The read operation works both as normally expected in the standard ethtool
method, as well as with the extra NVM controls. The write operation
works only for the expanded NVM functions - the normal ethtool method is
not allowed because of the NVM semaphore management needed for multipart
writes, as well as the checksum requirement.
Change-ID: I1d84a170153a9f437906744e2e350fd68fe7563d
Signed-off-by: Shannon Nelson <shannon.nelson@intel.com>
Tested-by: Jim Young <jamesx.m.young@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
2014-07-09 14:46:09 +07:00
|
|
|
|
|
|
|
switch (upd_cmd) {
|
|
|
|
case I40E_NVMUPD_READ_SA:
|
|
|
|
case I40E_NVMUPD_READ_CON:
|
2015-07-24 03:54:33 +07:00
|
|
|
status = i40e_nvmupd_nvm_read(hw, cmd, bytes, perrno);
|
i40e/i40evf: Add nvmupdate support
This implements a state machine intended to support the userland tool for
updating the device eeprom. The state machine implements one-shot reads,
writes, multi-step write sessions, and checksum requests. If we're in the middle
of a multi-step write session, no one should fire off other writes, however, one
shot reads are valid. The userland tool is expected to keep track of its session
status, arrange the placement and ordering of the writes, and deal with the
checksum requirement.
This patch also adds nvmupdate support to ethtool callbacks.
The get_eeprom() and set_eeprom() services in ethtool are used here to
facilitate the userland NVMUpdate tool. The 'magic' value in the get and
set commands is used to pass additional control information for managing
the read and write steps.
The read operation works both as normally expected in the standard ethtool
method, as well as with the extra NVM controls. The write operation
works only for the expanded NVM functions - the normal ethtool method is
not allowed because of the NVM semaphore management needed for multipart
writes, as well as the checksum requirement.
Change-ID: I1d84a170153a9f437906744e2e350fd68fe7563d
Signed-off-by: Shannon Nelson <shannon.nelson@intel.com>
Tested-by: Jim Young <jamesx.m.young@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
2014-07-09 14:46:09 +07:00
|
|
|
break;
|
|
|
|
|
|
|
|
case I40E_NVMUPD_READ_LCB:
|
2015-07-24 03:54:33 +07:00
|
|
|
status = i40e_nvmupd_nvm_read(hw, cmd, bytes, perrno);
|
i40e/i40evf: Add nvmupdate support
This implements a state machine intended to support the userland tool for
updating the device eeprom. The state machine implements one-shot reads,
writes, multi-step write sessions, and checksum requests. If we're in the middle
of a multi-step write session, no one should fire off other writes, however, one
shot reads are valid. The userland tool is expected to keep track of its session
status, arrange the placement and ordering of the writes, and deal with the
checksum requirement.
This patch also adds nvmupdate support to ethtool callbacks.
The get_eeprom() and set_eeprom() services in ethtool are used here to
facilitate the userland NVMUpdate tool. The 'magic' value in the get and
set commands is used to pass additional control information for managing
the read and write steps.
The read operation works both as normally expected in the standard ethtool
method, as well as with the extra NVM controls. The write operation
works only for the expanded NVM functions - the normal ethtool method is
not allowed because of the NVM semaphore management needed for multipart
writes, as well as the checksum requirement.
Change-ID: I1d84a170153a9f437906744e2e350fd68fe7563d
Signed-off-by: Shannon Nelson <shannon.nelson@intel.com>
Tested-by: Jim Young <jamesx.m.young@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
2014-07-09 14:46:09 +07:00
|
|
|
i40e_release_nvm(hw);
|
|
|
|
hw->nvmupd_state = I40E_NVMUPD_STATE_INIT;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2014-11-13 15:23:15 +07:00
|
|
|
i40e_debug(hw, I40E_DEBUG_NVM,
|
|
|
|
"NVMUPD: bad cmd %s in reading state.\n",
|
|
|
|
i40e_nvm_update_state_str[upd_cmd]);
|
i40e/i40evf: Add nvmupdate support
This implements a state machine intended to support the userland tool for
updating the device eeprom. The state machine implements one-shot reads,
writes, multi-step write sessions, and checksum requests. If we're in the middle
of a multi-step write session, no one should fire off other writes, however, one
shot reads are valid. The userland tool is expected to keep track of its session
status, arrange the placement and ordering of the writes, and deal with the
checksum requirement.
This patch also adds nvmupdate support to ethtool callbacks.
The get_eeprom() and set_eeprom() services in ethtool are used here to
facilitate the userland NVMUpdate tool. The 'magic' value in the get and
set commands is used to pass additional control information for managing
the read and write steps.
The read operation works both as normally expected in the standard ethtool
method, as well as with the extra NVM controls. The write operation
works only for the expanded NVM functions - the normal ethtool method is
not allowed because of the NVM semaphore management needed for multipart
writes, as well as the checksum requirement.
Change-ID: I1d84a170153a9f437906744e2e350fd68fe7563d
Signed-off-by: Shannon Nelson <shannon.nelson@intel.com>
Tested-by: Jim Young <jamesx.m.young@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
2014-07-09 14:46:09 +07:00
|
|
|
status = I40E_NOT_SUPPORTED;
|
2015-07-24 03:54:33 +07:00
|
|
|
*perrno = -ESRCH;
|
i40e/i40evf: Add nvmupdate support
This implements a state machine intended to support the userland tool for
updating the device eeprom. The state machine implements one-shot reads,
writes, multi-step write sessions, and checksum requests. If we're in the middle
of a multi-step write session, no one should fire off other writes, however, one
shot reads are valid. The userland tool is expected to keep track of its session
status, arrange the placement and ordering of the writes, and deal with the
checksum requirement.
This patch also adds nvmupdate support to ethtool callbacks.
The get_eeprom() and set_eeprom() services in ethtool are used here to
facilitate the userland NVMUpdate tool. The 'magic' value in the get and
set commands is used to pass additional control information for managing
the read and write steps.
The read operation works both as normally expected in the standard ethtool
method, as well as with the extra NVM controls. The write operation
works only for the expanded NVM functions - the normal ethtool method is
not allowed because of the NVM semaphore management needed for multipart
writes, as well as the checksum requirement.
Change-ID: I1d84a170153a9f437906744e2e350fd68fe7563d
Signed-off-by: Shannon Nelson <shannon.nelson@intel.com>
Tested-by: Jim Young <jamesx.m.young@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
2014-07-09 14:46:09 +07:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* i40e_nvmupd_state_writing - Handle NVM update state Writing
|
|
|
|
* @hw: pointer to hardware structure
|
|
|
|
* @cmd: pointer to nvm update command buffer
|
|
|
|
* @bytes: pointer to the data buffer
|
2015-07-24 03:54:33 +07:00
|
|
|
* @perrno: pointer to return error code
|
i40e/i40evf: Add nvmupdate support
This implements a state machine intended to support the userland tool for
updating the device eeprom. The state machine implements one-shot reads,
writes, multi-step write sessions, and checksum requests. If we're in the middle
of a multi-step write session, no one should fire off other writes, however, one
shot reads are valid. The userland tool is expected to keep track of its session
status, arrange the placement and ordering of the writes, and deal with the
checksum requirement.
This patch also adds nvmupdate support to ethtool callbacks.
The get_eeprom() and set_eeprom() services in ethtool are used here to
facilitate the userland NVMUpdate tool. The 'magic' value in the get and
set commands is used to pass additional control information for managing
the read and write steps.
The read operation works both as normally expected in the standard ethtool
method, as well as with the extra NVM controls. The write operation
works only for the expanded NVM functions - the normal ethtool method is
not allowed because of the NVM semaphore management needed for multipart
writes, as well as the checksum requirement.
Change-ID: I1d84a170153a9f437906744e2e350fd68fe7563d
Signed-off-by: Shannon Nelson <shannon.nelson@intel.com>
Tested-by: Jim Young <jamesx.m.young@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
2014-07-09 14:46:09 +07:00
|
|
|
*
|
|
|
|
* NVM ownership is already held. Process legitimate commands and set any
|
|
|
|
* change in state; reject all other commands
|
|
|
|
**/
|
|
|
|
static i40e_status i40e_nvmupd_state_writing(struct i40e_hw *hw,
|
|
|
|
struct i40e_nvm_access *cmd,
|
2015-07-24 03:54:33 +07:00
|
|
|
u8 *bytes, int *perrno)
|
i40e/i40evf: Add nvmupdate support
This implements a state machine intended to support the userland tool for
updating the device eeprom. The state machine implements one-shot reads,
writes, multi-step write sessions, and checksum requests. If we're in the middle
of a multi-step write session, no one should fire off other writes, however, one
shot reads are valid. The userland tool is expected to keep track of its session
status, arrange the placement and ordering of the writes, and deal with the
checksum requirement.
This patch also adds nvmupdate support to ethtool callbacks.
The get_eeprom() and set_eeprom() services in ethtool are used here to
facilitate the userland NVMUpdate tool. The 'magic' value in the get and
set commands is used to pass additional control information for managing
the read and write steps.
The read operation works both as normally expected in the standard ethtool
method, as well as with the extra NVM controls. The write operation
works only for the expanded NVM functions - the normal ethtool method is
not allowed because of the NVM semaphore management needed for multipart
writes, as well as the checksum requirement.
Change-ID: I1d84a170153a9f437906744e2e350fd68fe7563d
Signed-off-by: Shannon Nelson <shannon.nelson@intel.com>
Tested-by: Jim Young <jamesx.m.young@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
2014-07-09 14:46:09 +07:00
|
|
|
{
|
2015-08-29 04:55:49 +07:00
|
|
|
i40e_status status = 0;
|
i40e/i40evf: Add nvmupdate support
This implements a state machine intended to support the userland tool for
updating the device eeprom. The state machine implements one-shot reads,
writes, multi-step write sessions, and checksum requests. If we're in the middle
of a multi-step write session, no one should fire off other writes, however, one
shot reads are valid. The userland tool is expected to keep track of its session
status, arrange the placement and ordering of the writes, and deal with the
checksum requirement.
This patch also adds nvmupdate support to ethtool callbacks.
The get_eeprom() and set_eeprom() services in ethtool are used here to
facilitate the userland NVMUpdate tool. The 'magic' value in the get and
set commands is used to pass additional control information for managing
the read and write steps.
The read operation works both as normally expected in the standard ethtool
method, as well as with the extra NVM controls. The write operation
works only for the expanded NVM functions - the normal ethtool method is
not allowed because of the NVM semaphore management needed for multipart
writes, as well as the checksum requirement.
Change-ID: I1d84a170153a9f437906744e2e350fd68fe7563d
Signed-off-by: Shannon Nelson <shannon.nelson@intel.com>
Tested-by: Jim Young <jamesx.m.young@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
2014-07-09 14:46:09 +07:00
|
|
|
enum i40e_nvmupd_cmd upd_cmd;
|
2015-02-21 13:45:10 +07:00
|
|
|
bool retry_attempt = false;
|
i40e/i40evf: Add nvmupdate support
This implements a state machine intended to support the userland tool for
updating the device eeprom. The state machine implements one-shot reads,
writes, multi-step write sessions, and checksum requests. If we're in the middle
of a multi-step write session, no one should fire off other writes, however, one
shot reads are valid. The userland tool is expected to keep track of its session
status, arrange the placement and ordering of the writes, and deal with the
checksum requirement.
This patch also adds nvmupdate support to ethtool callbacks.
The get_eeprom() and set_eeprom() services in ethtool are used here to
facilitate the userland NVMUpdate tool. The 'magic' value in the get and
set commands is used to pass additional control information for managing
the read and write steps.
The read operation works both as normally expected in the standard ethtool
method, as well as with the extra NVM controls. The write operation
works only for the expanded NVM functions - the normal ethtool method is
not allowed because of the NVM semaphore management needed for multipart
writes, as well as the checksum requirement.
Change-ID: I1d84a170153a9f437906744e2e350fd68fe7563d
Signed-off-by: Shannon Nelson <shannon.nelson@intel.com>
Tested-by: Jim Young <jamesx.m.young@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
2014-07-09 14:46:09 +07:00
|
|
|
|
2015-07-24 03:54:33 +07:00
|
|
|
upd_cmd = i40e_nvmupd_validate_command(hw, cmd, perrno);
|
i40e/i40evf: Add nvmupdate support
This implements a state machine intended to support the userland tool for
updating the device eeprom. The state machine implements one-shot reads,
writes, multi-step write sessions, and checksum requests. If we're in the middle
of a multi-step write session, no one should fire off other writes, however, one
shot reads are valid. The userland tool is expected to keep track of its session
status, arrange the placement and ordering of the writes, and deal with the
checksum requirement.
This patch also adds nvmupdate support to ethtool callbacks.
The get_eeprom() and set_eeprom() services in ethtool are used here to
facilitate the userland NVMUpdate tool. The 'magic' value in the get and
set commands is used to pass additional control information for managing
the read and write steps.
The read operation works both as normally expected in the standard ethtool
method, as well as with the extra NVM controls. The write operation
works only for the expanded NVM functions - the normal ethtool method is
not allowed because of the NVM semaphore management needed for multipart
writes, as well as the checksum requirement.
Change-ID: I1d84a170153a9f437906744e2e350fd68fe7563d
Signed-off-by: Shannon Nelson <shannon.nelson@intel.com>
Tested-by: Jim Young <jamesx.m.young@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
2014-07-09 14:46:09 +07:00
|
|
|
|
2015-02-21 13:45:10 +07:00
|
|
|
retry:
|
i40e/i40evf: Add nvmupdate support
This implements a state machine intended to support the userland tool for
updating the device eeprom. The state machine implements one-shot reads,
writes, multi-step write sessions, and checksum requests. If we're in the middle
of a multi-step write session, no one should fire off other writes, however, one
shot reads are valid. The userland tool is expected to keep track of its session
status, arrange the placement and ordering of the writes, and deal with the
checksum requirement.
This patch also adds nvmupdate support to ethtool callbacks.
The get_eeprom() and set_eeprom() services in ethtool are used here to
facilitate the userland NVMUpdate tool. The 'magic' value in the get and
set commands is used to pass additional control information for managing
the read and write steps.
The read operation works both as normally expected in the standard ethtool
method, as well as with the extra NVM controls. The write operation
works only for the expanded NVM functions - the normal ethtool method is
not allowed because of the NVM semaphore management needed for multipart
writes, as well as the checksum requirement.
Change-ID: I1d84a170153a9f437906744e2e350fd68fe7563d
Signed-off-by: Shannon Nelson <shannon.nelson@intel.com>
Tested-by: Jim Young <jamesx.m.young@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
2014-07-09 14:46:09 +07:00
|
|
|
switch (upd_cmd) {
|
|
|
|
case I40E_NVMUPD_WRITE_CON:
|
2015-07-24 03:54:33 +07:00
|
|
|
status = i40e_nvmupd_nvm_write(hw, cmd, bytes, perrno);
|
2015-08-29 04:55:49 +07:00
|
|
|
if (!status)
|
|
|
|
hw->nvmupd_state = I40E_NVMUPD_STATE_WRITE_WAIT;
|
i40e/i40evf: Add nvmupdate support
This implements a state machine intended to support the userland tool for
updating the device eeprom. The state machine implements one-shot reads,
writes, multi-step write sessions, and checksum requests. If we're in the middle
of a multi-step write session, no one should fire off other writes, however, one
shot reads are valid. The userland tool is expected to keep track of its session
status, arrange the placement and ordering of the writes, and deal with the
checksum requirement.
This patch also adds nvmupdate support to ethtool callbacks.
The get_eeprom() and set_eeprom() services in ethtool are used here to
facilitate the userland NVMUpdate tool. The 'magic' value in the get and
set commands is used to pass additional control information for managing
the read and write steps.
The read operation works both as normally expected in the standard ethtool
method, as well as with the extra NVM controls. The write operation
works only for the expanded NVM functions - the normal ethtool method is
not allowed because of the NVM semaphore management needed for multipart
writes, as well as the checksum requirement.
Change-ID: I1d84a170153a9f437906744e2e350fd68fe7563d
Signed-off-by: Shannon Nelson <shannon.nelson@intel.com>
Tested-by: Jim Young <jamesx.m.young@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
2014-07-09 14:46:09 +07:00
|
|
|
break;
|
|
|
|
|
|
|
|
case I40E_NVMUPD_WRITE_LCB:
|
2015-07-24 03:54:33 +07:00
|
|
|
status = i40e_nvmupd_nvm_write(hw, cmd, bytes, perrno);
|
2015-08-29 04:55:49 +07:00
|
|
|
if (status) {
|
|
|
|
*perrno = hw->aq.asq_last_status ?
|
|
|
|
i40e_aq_rc_to_posix(status,
|
|
|
|
hw->aq.asq_last_status) :
|
|
|
|
-EIO;
|
|
|
|
hw->nvmupd_state = I40E_NVMUPD_STATE_INIT;
|
|
|
|
} else {
|
i40e/i40evf: Add nvmupdate support
This implements a state machine intended to support the userland tool for
updating the device eeprom. The state machine implements one-shot reads,
writes, multi-step write sessions, and checksum requests. If we're in the middle
of a multi-step write session, no one should fire off other writes, however, one
shot reads are valid. The userland tool is expected to keep track of its session
status, arrange the placement and ordering of the writes, and deal with the
checksum requirement.
This patch also adds nvmupdate support to ethtool callbacks.
The get_eeprom() and set_eeprom() services in ethtool are used here to
facilitate the userland NVMUpdate tool. The 'magic' value in the get and
set commands is used to pass additional control information for managing
the read and write steps.
The read operation works both as normally expected in the standard ethtool
method, as well as with the extra NVM controls. The write operation
works only for the expanded NVM functions - the normal ethtool method is
not allowed because of the NVM semaphore management needed for multipart
writes, as well as the checksum requirement.
Change-ID: I1d84a170153a9f437906744e2e350fd68fe7563d
Signed-off-by: Shannon Nelson <shannon.nelson@intel.com>
Tested-by: Jim Young <jamesx.m.young@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
2014-07-09 14:46:09 +07:00
|
|
|
hw->aq.nvm_release_on_done = true;
|
2015-08-29 04:55:49 +07:00
|
|
|
hw->nvmupd_state = I40E_NVMUPD_STATE_INIT_WAIT;
|
|
|
|
}
|
i40e/i40evf: Add nvmupdate support
This implements a state machine intended to support the userland tool for
updating the device eeprom. The state machine implements one-shot reads,
writes, multi-step write sessions, and checksum requests. If we're in the middle
of a multi-step write session, no one should fire off other writes, however, one
shot reads are valid. The userland tool is expected to keep track of its session
status, arrange the placement and ordering of the writes, and deal with the
checksum requirement.
This patch also adds nvmupdate support to ethtool callbacks.
The get_eeprom() and set_eeprom() services in ethtool are used here to
facilitate the userland NVMUpdate tool. The 'magic' value in the get and
set commands is used to pass additional control information for managing
the read and write steps.
The read operation works both as normally expected in the standard ethtool
method, as well as with the extra NVM controls. The write operation
works only for the expanded NVM functions - the normal ethtool method is
not allowed because of the NVM semaphore management needed for multipart
writes, as well as the checksum requirement.
Change-ID: I1d84a170153a9f437906744e2e350fd68fe7563d
Signed-off-by: Shannon Nelson <shannon.nelson@intel.com>
Tested-by: Jim Young <jamesx.m.young@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
2014-07-09 14:46:09 +07:00
|
|
|
break;
|
|
|
|
|
|
|
|
case I40E_NVMUPD_CSUM_CON:
|
|
|
|
status = i40e_update_nvm_checksum(hw);
|
2014-11-13 15:23:20 +07:00
|
|
|
if (status) {
|
2015-07-24 03:54:33 +07:00
|
|
|
*perrno = hw->aq.asq_last_status ?
|
2014-11-13 15:23:22 +07:00
|
|
|
i40e_aq_rc_to_posix(status,
|
|
|
|
hw->aq.asq_last_status) :
|
i40e/i40evf: Add nvmupdate support
This implements a state machine intended to support the userland tool for
updating the device eeprom. The state machine implements one-shot reads,
writes, multi-step write sessions, and checksum requests. If we're in the middle
of a multi-step write session, no one should fire off other writes, however, one
shot reads are valid. The userland tool is expected to keep track of its session
status, arrange the placement and ordering of the writes, and deal with the
checksum requirement.
This patch also adds nvmupdate support to ethtool callbacks.
The get_eeprom() and set_eeprom() services in ethtool are used here to
facilitate the userland NVMUpdate tool. The 'magic' value in the get and
set commands is used to pass additional control information for managing
the read and write steps.
The read operation works both as normally expected in the standard ethtool
method, as well as with the extra NVM controls. The write operation
works only for the expanded NVM functions - the normal ethtool method is
not allowed because of the NVM semaphore management needed for multipart
writes, as well as the checksum requirement.
Change-ID: I1d84a170153a9f437906744e2e350fd68fe7563d
Signed-off-by: Shannon Nelson <shannon.nelson@intel.com>
Tested-by: Jim Young <jamesx.m.young@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
2014-07-09 14:46:09 +07:00
|
|
|
-EIO;
|
2014-11-13 15:23:20 +07:00
|
|
|
hw->nvmupd_state = I40E_NVMUPD_STATE_INIT;
|
2015-08-29 04:55:49 +07:00
|
|
|
} else {
|
|
|
|
hw->nvmupd_state = I40E_NVMUPD_STATE_WRITE_WAIT;
|
2014-11-13 15:23:20 +07:00
|
|
|
}
|
i40e/i40evf: Add nvmupdate support
This implements a state machine intended to support the userland tool for
updating the device eeprom. The state machine implements one-shot reads,
writes, multi-step write sessions, and checksum requests. If we're in the middle
of a multi-step write session, no one should fire off other writes, however, one
shot reads are valid. The userland tool is expected to keep track of its session
status, arrange the placement and ordering of the writes, and deal with the
checksum requirement.
This patch also adds nvmupdate support to ethtool callbacks.
The get_eeprom() and set_eeprom() services in ethtool are used here to
facilitate the userland NVMUpdate tool. The 'magic' value in the get and
set commands is used to pass additional control information for managing
the read and write steps.
The read operation works both as normally expected in the standard ethtool
method, as well as with the extra NVM controls. The write operation
works only for the expanded NVM functions - the normal ethtool method is
not allowed because of the NVM semaphore management needed for multipart
writes, as well as the checksum requirement.
Change-ID: I1d84a170153a9f437906744e2e350fd68fe7563d
Signed-off-by: Shannon Nelson <shannon.nelson@intel.com>
Tested-by: Jim Young <jamesx.m.young@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
2014-07-09 14:46:09 +07:00
|
|
|
break;
|
|
|
|
|
|
|
|
case I40E_NVMUPD_CSUM_LCB:
|
|
|
|
status = i40e_update_nvm_checksum(hw);
|
2015-08-29 04:55:49 +07:00
|
|
|
if (status) {
|
2015-07-24 03:54:33 +07:00
|
|
|
*perrno = hw->aq.asq_last_status ?
|
2014-11-13 15:23:22 +07:00
|
|
|
i40e_aq_rc_to_posix(status,
|
|
|
|
hw->aq.asq_last_status) :
|
i40e/i40evf: Add nvmupdate support
This implements a state machine intended to support the userland tool for
updating the device eeprom. The state machine implements one-shot reads,
writes, multi-step write sessions, and checksum requests. If we're in the middle
of a multi-step write session, no one should fire off other writes, however, one
shot reads are valid. The userland tool is expected to keep track of its session
status, arrange the placement and ordering of the writes, and deal with the
checksum requirement.
This patch also adds nvmupdate support to ethtool callbacks.
The get_eeprom() and set_eeprom() services in ethtool are used here to
facilitate the userland NVMUpdate tool. The 'magic' value in the get and
set commands is used to pass additional control information for managing
the read and write steps.
The read operation works both as normally expected in the standard ethtool
method, as well as with the extra NVM controls. The write operation
works only for the expanded NVM functions - the normal ethtool method is
not allowed because of the NVM semaphore management needed for multipart
writes, as well as the checksum requirement.
Change-ID: I1d84a170153a9f437906744e2e350fd68fe7563d
Signed-off-by: Shannon Nelson <shannon.nelson@intel.com>
Tested-by: Jim Young <jamesx.m.young@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
2014-07-09 14:46:09 +07:00
|
|
|
-EIO;
|
2015-08-29 04:55:49 +07:00
|
|
|
hw->nvmupd_state = I40E_NVMUPD_STATE_INIT;
|
|
|
|
} else {
|
i40e/i40evf: Add nvmupdate support
This implements a state machine intended to support the userland tool for
updating the device eeprom. The state machine implements one-shot reads,
writes, multi-step write sessions, and checksum requests. If we're in the middle
of a multi-step write session, no one should fire off other writes, however, one
shot reads are valid. The userland tool is expected to keep track of its session
status, arrange the placement and ordering of the writes, and deal with the
checksum requirement.
This patch also adds nvmupdate support to ethtool callbacks.
The get_eeprom() and set_eeprom() services in ethtool are used here to
facilitate the userland NVMUpdate tool. The 'magic' value in the get and
set commands is used to pass additional control information for managing
the read and write steps.
The read operation works both as normally expected in the standard ethtool
method, as well as with the extra NVM controls. The write operation
works only for the expanded NVM functions - the normal ethtool method is
not allowed because of the NVM semaphore management needed for multipart
writes, as well as the checksum requirement.
Change-ID: I1d84a170153a9f437906744e2e350fd68fe7563d
Signed-off-by: Shannon Nelson <shannon.nelson@intel.com>
Tested-by: Jim Young <jamesx.m.young@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
2014-07-09 14:46:09 +07:00
|
|
|
hw->aq.nvm_release_on_done = true;
|
2015-08-29 04:55:49 +07:00
|
|
|
hw->nvmupd_state = I40E_NVMUPD_STATE_INIT_WAIT;
|
|
|
|
}
|
i40e/i40evf: Add nvmupdate support
This implements a state machine intended to support the userland tool for
updating the device eeprom. The state machine implements one-shot reads,
writes, multi-step write sessions, and checksum requests. If we're in the middle
of a multi-step write session, no one should fire off other writes, however, one
shot reads are valid. The userland tool is expected to keep track of its session
status, arrange the placement and ordering of the writes, and deal with the
checksum requirement.
This patch also adds nvmupdate support to ethtool callbacks.
The get_eeprom() and set_eeprom() services in ethtool are used here to
facilitate the userland NVMUpdate tool. The 'magic' value in the get and
set commands is used to pass additional control information for managing
the read and write steps.
The read operation works both as normally expected in the standard ethtool
method, as well as with the extra NVM controls. The write operation
works only for the expanded NVM functions - the normal ethtool method is
not allowed because of the NVM semaphore management needed for multipart
writes, as well as the checksum requirement.
Change-ID: I1d84a170153a9f437906744e2e350fd68fe7563d
Signed-off-by: Shannon Nelson <shannon.nelson@intel.com>
Tested-by: Jim Young <jamesx.m.young@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
2014-07-09 14:46:09 +07:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2014-11-13 15:23:15 +07:00
|
|
|
i40e_debug(hw, I40E_DEBUG_NVM,
|
|
|
|
"NVMUPD: bad cmd %s in writing state.\n",
|
|
|
|
i40e_nvm_update_state_str[upd_cmd]);
|
i40e/i40evf: Add nvmupdate support
This implements a state machine intended to support the userland tool for
updating the device eeprom. The state machine implements one-shot reads,
writes, multi-step write sessions, and checksum requests. If we're in the middle
of a multi-step write session, no one should fire off other writes, however, one
shot reads are valid. The userland tool is expected to keep track of its session
status, arrange the placement and ordering of the writes, and deal with the
checksum requirement.
This patch also adds nvmupdate support to ethtool callbacks.
The get_eeprom() and set_eeprom() services in ethtool are used here to
facilitate the userland NVMUpdate tool. The 'magic' value in the get and
set commands is used to pass additional control information for managing
the read and write steps.
The read operation works both as normally expected in the standard ethtool
method, as well as with the extra NVM controls. The write operation
works only for the expanded NVM functions - the normal ethtool method is
not allowed because of the NVM semaphore management needed for multipart
writes, as well as the checksum requirement.
Change-ID: I1d84a170153a9f437906744e2e350fd68fe7563d
Signed-off-by: Shannon Nelson <shannon.nelson@intel.com>
Tested-by: Jim Young <jamesx.m.young@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
2014-07-09 14:46:09 +07:00
|
|
|
status = I40E_NOT_SUPPORTED;
|
2015-07-24 03:54:33 +07:00
|
|
|
*perrno = -ESRCH;
|
i40e/i40evf: Add nvmupdate support
This implements a state machine intended to support the userland tool for
updating the device eeprom. The state machine implements one-shot reads,
writes, multi-step write sessions, and checksum requests. If we're in the middle
of a multi-step write session, no one should fire off other writes, however, one
shot reads are valid. The userland tool is expected to keep track of its session
status, arrange the placement and ordering of the writes, and deal with the
checksum requirement.
This patch also adds nvmupdate support to ethtool callbacks.
The get_eeprom() and set_eeprom() services in ethtool are used here to
facilitate the userland NVMUpdate tool. The 'magic' value in the get and
set commands is used to pass additional control information for managing
the read and write steps.
The read operation works both as normally expected in the standard ethtool
method, as well as with the extra NVM controls. The write operation
works only for the expanded NVM functions - the normal ethtool method is
not allowed because of the NVM semaphore management needed for multipart
writes, as well as the checksum requirement.
Change-ID: I1d84a170153a9f437906744e2e350fd68fe7563d
Signed-off-by: Shannon Nelson <shannon.nelson@intel.com>
Tested-by: Jim Young <jamesx.m.young@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
2014-07-09 14:46:09 +07:00
|
|
|
break;
|
|
|
|
}
|
2015-02-21 13:45:10 +07:00
|
|
|
|
|
|
|
/* In some circumstances, a multi-write transaction takes longer
|
|
|
|
* than the default 3 minute timeout on the write semaphore. If
|
|
|
|
* the write failed with an EBUSY status, this is likely the problem,
|
|
|
|
* so here we try to reacquire the semaphore then retry the write.
|
|
|
|
* We only do one retry, then give up.
|
|
|
|
*/
|
|
|
|
if (status && (hw->aq.asq_last_status == I40E_AQ_RC_EBUSY) &&
|
|
|
|
!retry_attempt) {
|
|
|
|
i40e_status old_status = status;
|
|
|
|
u32 old_asq_status = hw->aq.asq_last_status;
|
|
|
|
u32 gtime;
|
|
|
|
|
|
|
|
gtime = rd32(hw, I40E_GLVFGEN_TIMER);
|
|
|
|
if (gtime >= hw->nvm.hw_semaphore_timeout) {
|
|
|
|
i40e_debug(hw, I40E_DEBUG_ALL,
|
|
|
|
"NVMUPD: write semaphore expired (%d >= %lld), retrying\n",
|
|
|
|
gtime, hw->nvm.hw_semaphore_timeout);
|
|
|
|
i40e_release_nvm(hw);
|
|
|
|
status = i40e_acquire_nvm(hw, I40E_RESOURCE_WRITE);
|
|
|
|
if (status) {
|
|
|
|
i40e_debug(hw, I40E_DEBUG_ALL,
|
|
|
|
"NVMUPD: write semaphore reacquire failed aq_err = %d\n",
|
|
|
|
hw->aq.asq_last_status);
|
|
|
|
status = old_status;
|
|
|
|
hw->aq.asq_last_status = old_asq_status;
|
|
|
|
} else {
|
|
|
|
retry_attempt = true;
|
|
|
|
goto retry;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
i40e/i40evf: Add nvmupdate support
This implements a state machine intended to support the userland tool for
updating the device eeprom. The state machine implements one-shot reads,
writes, multi-step write sessions, and checksum requests. If we're in the middle
of a multi-step write session, no one should fire off other writes, however, one
shot reads are valid. The userland tool is expected to keep track of its session
status, arrange the placement and ordering of the writes, and deal with the
checksum requirement.
This patch also adds nvmupdate support to ethtool callbacks.
The get_eeprom() and set_eeprom() services in ethtool are used here to
facilitate the userland NVMUpdate tool. The 'magic' value in the get and
set commands is used to pass additional control information for managing
the read and write steps.
The read operation works both as normally expected in the standard ethtool
method, as well as with the extra NVM controls. The write operation
works only for the expanded NVM functions - the normal ethtool method is
not allowed because of the NVM semaphore management needed for multipart
writes, as well as the checksum requirement.
Change-ID: I1d84a170153a9f437906744e2e350fd68fe7563d
Signed-off-by: Shannon Nelson <shannon.nelson@intel.com>
Tested-by: Jim Young <jamesx.m.young@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
2014-07-09 14:46:09 +07:00
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* i40e_nvmupd_validate_command - Validate given command
|
|
|
|
* @hw: pointer to hardware structure
|
|
|
|
* @cmd: pointer to nvm update command buffer
|
2015-07-24 03:54:33 +07:00
|
|
|
* @perrno: pointer to return error code
|
i40e/i40evf: Add nvmupdate support
This implements a state machine intended to support the userland tool for
updating the device eeprom. The state machine implements one-shot reads,
writes, multi-step write sessions, and checksum requests. If we're in the middle
of a multi-step write session, no one should fire off other writes, however, one
shot reads are valid. The userland tool is expected to keep track of its session
status, arrange the placement and ordering of the writes, and deal with the
checksum requirement.
This patch also adds nvmupdate support to ethtool callbacks.
The get_eeprom() and set_eeprom() services in ethtool are used here to
facilitate the userland NVMUpdate tool. The 'magic' value in the get and
set commands is used to pass additional control information for managing
the read and write steps.
The read operation works both as normally expected in the standard ethtool
method, as well as with the extra NVM controls. The write operation
works only for the expanded NVM functions - the normal ethtool method is
not allowed because of the NVM semaphore management needed for multipart
writes, as well as the checksum requirement.
Change-ID: I1d84a170153a9f437906744e2e350fd68fe7563d
Signed-off-by: Shannon Nelson <shannon.nelson@intel.com>
Tested-by: Jim Young <jamesx.m.young@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
2014-07-09 14:46:09 +07:00
|
|
|
*
|
|
|
|
* Return one of the valid command types or I40E_NVMUPD_INVALID
|
|
|
|
**/
|
|
|
|
static enum i40e_nvmupd_cmd i40e_nvmupd_validate_command(struct i40e_hw *hw,
|
|
|
|
struct i40e_nvm_access *cmd,
|
2015-07-24 03:54:33 +07:00
|
|
|
int *perrno)
|
i40e/i40evf: Add nvmupdate support
This implements a state machine intended to support the userland tool for
updating the device eeprom. The state machine implements one-shot reads,
writes, multi-step write sessions, and checksum requests. If we're in the middle
of a multi-step write session, no one should fire off other writes, however, one
shot reads are valid. The userland tool is expected to keep track of its session
status, arrange the placement and ordering of the writes, and deal with the
checksum requirement.
This patch also adds nvmupdate support to ethtool callbacks.
The get_eeprom() and set_eeprom() services in ethtool are used here to
facilitate the userland NVMUpdate tool. The 'magic' value in the get and
set commands is used to pass additional control information for managing
the read and write steps.
The read operation works both as normally expected in the standard ethtool
method, as well as with the extra NVM controls. The write operation
works only for the expanded NVM functions - the normal ethtool method is
not allowed because of the NVM semaphore management needed for multipart
writes, as well as the checksum requirement.
Change-ID: I1d84a170153a9f437906744e2e350fd68fe7563d
Signed-off-by: Shannon Nelson <shannon.nelson@intel.com>
Tested-by: Jim Young <jamesx.m.young@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
2014-07-09 14:46:09 +07:00
|
|
|
{
|
|
|
|
enum i40e_nvmupd_cmd upd_cmd;
|
2015-08-29 04:55:48 +07:00
|
|
|
u8 module, transaction;
|
i40e/i40evf: Add nvmupdate support
This implements a state machine intended to support the userland tool for
updating the device eeprom. The state machine implements one-shot reads,
writes, multi-step write sessions, and checksum requests. If we're in the middle
of a multi-step write session, no one should fire off other writes, however, one
shot reads are valid. The userland tool is expected to keep track of its session
status, arrange the placement and ordering of the writes, and deal with the
checksum requirement.
This patch also adds nvmupdate support to ethtool callbacks.
The get_eeprom() and set_eeprom() services in ethtool are used here to
facilitate the userland NVMUpdate tool. The 'magic' value in the get and
set commands is used to pass additional control information for managing
the read and write steps.
The read operation works both as normally expected in the standard ethtool
method, as well as with the extra NVM controls. The write operation
works only for the expanded NVM functions - the normal ethtool method is
not allowed because of the NVM semaphore management needed for multipart
writes, as well as the checksum requirement.
Change-ID: I1d84a170153a9f437906744e2e350fd68fe7563d
Signed-off-by: Shannon Nelson <shannon.nelson@intel.com>
Tested-by: Jim Young <jamesx.m.young@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
2014-07-09 14:46:09 +07:00
|
|
|
|
|
|
|
/* anything that doesn't match a recognized case is an error */
|
|
|
|
upd_cmd = I40E_NVMUPD_INVALID;
|
|
|
|
|
|
|
|
transaction = i40e_nvmupd_get_transaction(cmd->config);
|
2015-08-29 04:55:48 +07:00
|
|
|
module = i40e_nvmupd_get_module(cmd->config);
|
i40e/i40evf: Add nvmupdate support
This implements a state machine intended to support the userland tool for
updating the device eeprom. The state machine implements one-shot reads,
writes, multi-step write sessions, and checksum requests. If we're in the middle
of a multi-step write session, no one should fire off other writes, however, one
shot reads are valid. The userland tool is expected to keep track of its session
status, arrange the placement and ordering of the writes, and deal with the
checksum requirement.
This patch also adds nvmupdate support to ethtool callbacks.
The get_eeprom() and set_eeprom() services in ethtool are used here to
facilitate the userland NVMUpdate tool. The 'magic' value in the get and
set commands is used to pass additional control information for managing
the read and write steps.
The read operation works both as normally expected in the standard ethtool
method, as well as with the extra NVM controls. The write operation
works only for the expanded NVM functions - the normal ethtool method is
not allowed because of the NVM semaphore management needed for multipart
writes, as well as the checksum requirement.
Change-ID: I1d84a170153a9f437906744e2e350fd68fe7563d
Signed-off-by: Shannon Nelson <shannon.nelson@intel.com>
Tested-by: Jim Young <jamesx.m.young@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
2014-07-09 14:46:09 +07:00
|
|
|
|
|
|
|
/* limits on data size */
|
|
|
|
if ((cmd->data_size < 1) ||
|
|
|
|
(cmd->data_size > I40E_NVMUPD_MAX_DATA)) {
|
2014-11-13 15:23:15 +07:00
|
|
|
i40e_debug(hw, I40E_DEBUG_NVM,
|
|
|
|
"i40e_nvmupd_validate_command data_size %d\n",
|
|
|
|
cmd->data_size);
|
2015-07-24 03:54:33 +07:00
|
|
|
*perrno = -EFAULT;
|
i40e/i40evf: Add nvmupdate support
This implements a state machine intended to support the userland tool for
updating the device eeprom. The state machine implements one-shot reads,
writes, multi-step write sessions, and checksum requests. If we're in the middle
of a multi-step write session, no one should fire off other writes, however, one
shot reads are valid. The userland tool is expected to keep track of its session
status, arrange the placement and ordering of the writes, and deal with the
checksum requirement.
This patch also adds nvmupdate support to ethtool callbacks.
The get_eeprom() and set_eeprom() services in ethtool are used here to
facilitate the userland NVMUpdate tool. The 'magic' value in the get and
set commands is used to pass additional control information for managing
the read and write steps.
The read operation works both as normally expected in the standard ethtool
method, as well as with the extra NVM controls. The write operation
works only for the expanded NVM functions - the normal ethtool method is
not allowed because of the NVM semaphore management needed for multipart
writes, as well as the checksum requirement.
Change-ID: I1d84a170153a9f437906744e2e350fd68fe7563d
Signed-off-by: Shannon Nelson <shannon.nelson@intel.com>
Tested-by: Jim Young <jamesx.m.young@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
2014-07-09 14:46:09 +07:00
|
|
|
return I40E_NVMUPD_INVALID;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (cmd->command) {
|
|
|
|
case I40E_NVM_READ:
|
|
|
|
switch (transaction) {
|
|
|
|
case I40E_NVM_CON:
|
|
|
|
upd_cmd = I40E_NVMUPD_READ_CON;
|
|
|
|
break;
|
|
|
|
case I40E_NVM_SNT:
|
|
|
|
upd_cmd = I40E_NVMUPD_READ_SNT;
|
|
|
|
break;
|
|
|
|
case I40E_NVM_LCB:
|
|
|
|
upd_cmd = I40E_NVMUPD_READ_LCB;
|
|
|
|
break;
|
|
|
|
case I40E_NVM_SA:
|
|
|
|
upd_cmd = I40E_NVMUPD_READ_SA;
|
|
|
|
break;
|
2015-08-29 04:55:48 +07:00
|
|
|
case I40E_NVM_EXEC:
|
|
|
|
if (module == 0xf)
|
|
|
|
upd_cmd = I40E_NVMUPD_STATUS;
|
2015-08-29 04:55:51 +07:00
|
|
|
else if (module == 0)
|
|
|
|
upd_cmd = I40E_NVMUPD_GET_AQ_RESULT;
|
2015-08-29 04:55:48 +07:00
|
|
|
break;
|
i40e/i40evf: Add nvmupdate support
This implements a state machine intended to support the userland tool for
updating the device eeprom. The state machine implements one-shot reads,
writes, multi-step write sessions, and checksum requests. If we're in the middle
of a multi-step write session, no one should fire off other writes, however, one
shot reads are valid. The userland tool is expected to keep track of its session
status, arrange the placement and ordering of the writes, and deal with the
checksum requirement.
This patch also adds nvmupdate support to ethtool callbacks.
The get_eeprom() and set_eeprom() services in ethtool are used here to
facilitate the userland NVMUpdate tool. The 'magic' value in the get and
set commands is used to pass additional control information for managing
the read and write steps.
The read operation works both as normally expected in the standard ethtool
method, as well as with the extra NVM controls. The write operation
works only for the expanded NVM functions - the normal ethtool method is
not allowed because of the NVM semaphore management needed for multipart
writes, as well as the checksum requirement.
Change-ID: I1d84a170153a9f437906744e2e350fd68fe7563d
Signed-off-by: Shannon Nelson <shannon.nelson@intel.com>
Tested-by: Jim Young <jamesx.m.young@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
2014-07-09 14:46:09 +07:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case I40E_NVM_WRITE:
|
|
|
|
switch (transaction) {
|
|
|
|
case I40E_NVM_CON:
|
|
|
|
upd_cmd = I40E_NVMUPD_WRITE_CON;
|
|
|
|
break;
|
|
|
|
case I40E_NVM_SNT:
|
|
|
|
upd_cmd = I40E_NVMUPD_WRITE_SNT;
|
|
|
|
break;
|
|
|
|
case I40E_NVM_LCB:
|
|
|
|
upd_cmd = I40E_NVMUPD_WRITE_LCB;
|
|
|
|
break;
|
|
|
|
case I40E_NVM_SA:
|
|
|
|
upd_cmd = I40E_NVMUPD_WRITE_SA;
|
|
|
|
break;
|
|
|
|
case I40E_NVM_ERA:
|
|
|
|
upd_cmd = I40E_NVMUPD_WRITE_ERA;
|
|
|
|
break;
|
|
|
|
case I40E_NVM_CSUM:
|
|
|
|
upd_cmd = I40E_NVMUPD_CSUM_CON;
|
|
|
|
break;
|
|
|
|
case (I40E_NVM_CSUM|I40E_NVM_SA):
|
|
|
|
upd_cmd = I40E_NVMUPD_CSUM_SA;
|
|
|
|
break;
|
|
|
|
case (I40E_NVM_CSUM|I40E_NVM_LCB):
|
|
|
|
upd_cmd = I40E_NVMUPD_CSUM_LCB;
|
|
|
|
break;
|
2015-08-29 04:55:50 +07:00
|
|
|
case I40E_NVM_EXEC:
|
|
|
|
if (module == 0)
|
|
|
|
upd_cmd = I40E_NVMUPD_EXEC_AQ;
|
|
|
|
break;
|
i40e/i40evf: Add nvmupdate support
This implements a state machine intended to support the userland tool for
updating the device eeprom. The state machine implements one-shot reads,
writes, multi-step write sessions, and checksum requests. If we're in the middle
of a multi-step write session, no one should fire off other writes, however, one
shot reads are valid. The userland tool is expected to keep track of its session
status, arrange the placement and ordering of the writes, and deal with the
checksum requirement.
This patch also adds nvmupdate support to ethtool callbacks.
The get_eeprom() and set_eeprom() services in ethtool are used here to
facilitate the userland NVMUpdate tool. The 'magic' value in the get and
set commands is used to pass additional control information for managing
the read and write steps.
The read operation works both as normally expected in the standard ethtool
method, as well as with the extra NVM controls. The write operation
works only for the expanded NVM functions - the normal ethtool method is
not allowed because of the NVM semaphore management needed for multipart
writes, as well as the checksum requirement.
Change-ID: I1d84a170153a9f437906744e2e350fd68fe7563d
Signed-off-by: Shannon Nelson <shannon.nelson@intel.com>
Tested-by: Jim Young <jamesx.m.young@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
2014-07-09 14:46:09 +07:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return upd_cmd;
|
|
|
|
}
|
|
|
|
|
2015-08-29 04:55:50 +07:00
|
|
|
/**
|
|
|
|
* i40e_nvmupd_exec_aq - Run an AQ command
|
|
|
|
* @hw: pointer to hardware structure
|
|
|
|
* @cmd: pointer to nvm update command buffer
|
|
|
|
* @bytes: pointer to the data buffer
|
|
|
|
* @perrno: pointer to return error code
|
|
|
|
*
|
|
|
|
* cmd structure contains identifiers and data buffer
|
|
|
|
**/
|
|
|
|
static i40e_status i40e_nvmupd_exec_aq(struct i40e_hw *hw,
|
|
|
|
struct i40e_nvm_access *cmd,
|
|
|
|
u8 *bytes, int *perrno)
|
|
|
|
{
|
|
|
|
struct i40e_asq_cmd_details cmd_details;
|
|
|
|
i40e_status status;
|
|
|
|
struct i40e_aq_desc *aq_desc;
|
|
|
|
u32 buff_size = 0;
|
|
|
|
u8 *buff = NULL;
|
|
|
|
u32 aq_desc_len;
|
|
|
|
u32 aq_data_len;
|
|
|
|
|
|
|
|
i40e_debug(hw, I40E_DEBUG_NVM, "NVMUPD: %s\n", __func__);
|
|
|
|
memset(&cmd_details, 0, sizeof(cmd_details));
|
|
|
|
cmd_details.wb_desc = &hw->nvm_wb_desc;
|
|
|
|
|
|
|
|
aq_desc_len = sizeof(struct i40e_aq_desc);
|
|
|
|
memset(&hw->nvm_wb_desc, 0, aq_desc_len);
|
|
|
|
|
|
|
|
/* get the aq descriptor */
|
|
|
|
if (cmd->data_size < aq_desc_len) {
|
|
|
|
i40e_debug(hw, I40E_DEBUG_NVM,
|
|
|
|
"NVMUPD: not enough aq desc bytes for exec, size %d < %d\n",
|
|
|
|
cmd->data_size, aq_desc_len);
|
|
|
|
*perrno = -EINVAL;
|
|
|
|
return I40E_ERR_PARAM;
|
|
|
|
}
|
|
|
|
aq_desc = (struct i40e_aq_desc *)bytes;
|
|
|
|
|
|
|
|
/* if data buffer needed, make sure it's ready */
|
|
|
|
aq_data_len = cmd->data_size - aq_desc_len;
|
|
|
|
buff_size = max_t(u32, aq_data_len, le16_to_cpu(aq_desc->datalen));
|
|
|
|
if (buff_size) {
|
|
|
|
if (!hw->nvm_buff.va) {
|
|
|
|
status = i40e_allocate_virt_mem(hw, &hw->nvm_buff,
|
|
|
|
hw->aq.asq_buf_size);
|
|
|
|
if (status)
|
|
|
|
i40e_debug(hw, I40E_DEBUG_NVM,
|
|
|
|
"NVMUPD: i40e_allocate_virt_mem for exec buff failed, %d\n",
|
|
|
|
status);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (hw->nvm_buff.va) {
|
|
|
|
buff = hw->nvm_buff.va;
|
|
|
|
memcpy(buff, &bytes[aq_desc_len], aq_data_len);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* and away we go! */
|
|
|
|
status = i40e_asq_send_command(hw, aq_desc, buff,
|
|
|
|
buff_size, &cmd_details);
|
|
|
|
if (status) {
|
|
|
|
i40e_debug(hw, I40E_DEBUG_NVM,
|
|
|
|
"i40e_nvmupd_exec_aq err %s aq_err %s\n",
|
|
|
|
i40e_stat_str(hw, status),
|
|
|
|
i40e_aq_str(hw, hw->aq.asq_last_status));
|
|
|
|
*perrno = i40e_aq_rc_to_posix(status, hw->aq.asq_last_status);
|
|
|
|
}
|
|
|
|
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
2015-08-29 04:55:51 +07:00
|
|
|
/**
|
|
|
|
* i40e_nvmupd_get_aq_result - Get the results from the previous exec_aq
|
|
|
|
* @hw: pointer to hardware structure
|
|
|
|
* @cmd: pointer to nvm update command buffer
|
|
|
|
* @bytes: pointer to the data buffer
|
|
|
|
* @perrno: pointer to return error code
|
|
|
|
*
|
|
|
|
* cmd structure contains identifiers and data buffer
|
|
|
|
**/
|
|
|
|
static i40e_status i40e_nvmupd_get_aq_result(struct i40e_hw *hw,
|
|
|
|
struct i40e_nvm_access *cmd,
|
|
|
|
u8 *bytes, int *perrno)
|
|
|
|
{
|
|
|
|
u32 aq_total_len;
|
|
|
|
u32 aq_desc_len;
|
|
|
|
int remainder;
|
|
|
|
u8 *buff;
|
|
|
|
|
|
|
|
i40e_debug(hw, I40E_DEBUG_NVM, "NVMUPD: %s\n", __func__);
|
|
|
|
|
|
|
|
aq_desc_len = sizeof(struct i40e_aq_desc);
|
|
|
|
aq_total_len = aq_desc_len + le16_to_cpu(hw->nvm_wb_desc.datalen);
|
|
|
|
|
|
|
|
/* check offset range */
|
|
|
|
if (cmd->offset > aq_total_len) {
|
|
|
|
i40e_debug(hw, I40E_DEBUG_NVM, "%s: offset too big %d > %d\n",
|
|
|
|
__func__, cmd->offset, aq_total_len);
|
|
|
|
*perrno = -EINVAL;
|
|
|
|
return I40E_ERR_PARAM;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* check copylength range */
|
|
|
|
if (cmd->data_size > (aq_total_len - cmd->offset)) {
|
|
|
|
int new_len = aq_total_len - cmd->offset;
|
|
|
|
|
|
|
|
i40e_debug(hw, I40E_DEBUG_NVM, "%s: copy length %d too big, trimming to %d\n",
|
|
|
|
__func__, cmd->data_size, new_len);
|
|
|
|
cmd->data_size = new_len;
|
|
|
|
}
|
|
|
|
|
|
|
|
remainder = cmd->data_size;
|
|
|
|
if (cmd->offset < aq_desc_len) {
|
|
|
|
u32 len = aq_desc_len - cmd->offset;
|
|
|
|
|
|
|
|
len = min(len, cmd->data_size);
|
|
|
|
i40e_debug(hw, I40E_DEBUG_NVM, "%s: aq_desc bytes %d to %d\n",
|
|
|
|
__func__, cmd->offset, cmd->offset + len);
|
|
|
|
|
|
|
|
buff = ((u8 *)&hw->nvm_wb_desc) + cmd->offset;
|
|
|
|
memcpy(bytes, buff, len);
|
|
|
|
|
|
|
|
bytes += len;
|
|
|
|
remainder -= len;
|
|
|
|
buff = hw->nvm_buff.va;
|
|
|
|
} else {
|
|
|
|
buff = hw->nvm_buff.va + (cmd->offset - aq_desc_len);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (remainder > 0) {
|
|
|
|
int start_byte = buff - (u8 *)hw->nvm_buff.va;
|
|
|
|
|
|
|
|
i40e_debug(hw, I40E_DEBUG_NVM, "%s: databuf bytes %d to %d\n",
|
|
|
|
__func__, start_byte, start_byte + remainder);
|
|
|
|
memcpy(bytes, buff, remainder);
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
i40e/i40evf: Add nvmupdate support
This implements a state machine intended to support the userland tool for
updating the device eeprom. The state machine implements one-shot reads,
writes, multi-step write sessions, and checksum requests. If we're in the middle
of a multi-step write session, no one should fire off other writes, however, one
shot reads are valid. The userland tool is expected to keep track of its session
status, arrange the placement and ordering of the writes, and deal with the
checksum requirement.
This patch also adds nvmupdate support to ethtool callbacks.
The get_eeprom() and set_eeprom() services in ethtool are used here to
facilitate the userland NVMUpdate tool. The 'magic' value in the get and
set commands is used to pass additional control information for managing
the read and write steps.
The read operation works both as normally expected in the standard ethtool
method, as well as with the extra NVM controls. The write operation
works only for the expanded NVM functions - the normal ethtool method is
not allowed because of the NVM semaphore management needed for multipart
writes, as well as the checksum requirement.
Change-ID: I1d84a170153a9f437906744e2e350fd68fe7563d
Signed-off-by: Shannon Nelson <shannon.nelson@intel.com>
Tested-by: Jim Young <jamesx.m.young@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
2014-07-09 14:46:09 +07:00
|
|
|
/**
|
|
|
|
* i40e_nvmupd_nvm_read - Read NVM
|
|
|
|
* @hw: pointer to hardware structure
|
|
|
|
* @cmd: pointer to nvm update command buffer
|
|
|
|
* @bytes: pointer to the data buffer
|
2015-07-24 03:54:33 +07:00
|
|
|
* @perrno: pointer to return error code
|
i40e/i40evf: Add nvmupdate support
This implements a state machine intended to support the userland tool for
updating the device eeprom. The state machine implements one-shot reads,
writes, multi-step write sessions, and checksum requests. If we're in the middle
of a multi-step write session, no one should fire off other writes, however, one
shot reads are valid. The userland tool is expected to keep track of its session
status, arrange the placement and ordering of the writes, and deal with the
checksum requirement.
This patch also adds nvmupdate support to ethtool callbacks.
The get_eeprom() and set_eeprom() services in ethtool are used here to
facilitate the userland NVMUpdate tool. The 'magic' value in the get and
set commands is used to pass additional control information for managing
the read and write steps.
The read operation works both as normally expected in the standard ethtool
method, as well as with the extra NVM controls. The write operation
works only for the expanded NVM functions - the normal ethtool method is
not allowed because of the NVM semaphore management needed for multipart
writes, as well as the checksum requirement.
Change-ID: I1d84a170153a9f437906744e2e350fd68fe7563d
Signed-off-by: Shannon Nelson <shannon.nelson@intel.com>
Tested-by: Jim Young <jamesx.m.young@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
2014-07-09 14:46:09 +07:00
|
|
|
*
|
|
|
|
* cmd structure contains identifiers and data buffer
|
|
|
|
**/
|
|
|
|
static i40e_status i40e_nvmupd_nvm_read(struct i40e_hw *hw,
|
|
|
|
struct i40e_nvm_access *cmd,
|
2015-07-24 03:54:33 +07:00
|
|
|
u8 *bytes, int *perrno)
|
i40e/i40evf: Add nvmupdate support
This implements a state machine intended to support the userland tool for
updating the device eeprom. The state machine implements one-shot reads,
writes, multi-step write sessions, and checksum requests. If we're in the middle
of a multi-step write session, no one should fire off other writes, however, one
shot reads are valid. The userland tool is expected to keep track of its session
status, arrange the placement and ordering of the writes, and deal with the
checksum requirement.
This patch also adds nvmupdate support to ethtool callbacks.
The get_eeprom() and set_eeprom() services in ethtool are used here to
facilitate the userland NVMUpdate tool. The 'magic' value in the get and
set commands is used to pass additional control information for managing
the read and write steps.
The read operation works both as normally expected in the standard ethtool
method, as well as with the extra NVM controls. The write operation
works only for the expanded NVM functions - the normal ethtool method is
not allowed because of the NVM semaphore management needed for multipart
writes, as well as the checksum requirement.
Change-ID: I1d84a170153a9f437906744e2e350fd68fe7563d
Signed-off-by: Shannon Nelson <shannon.nelson@intel.com>
Tested-by: Jim Young <jamesx.m.young@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
2014-07-09 14:46:09 +07:00
|
|
|
{
|
2015-08-29 04:55:47 +07:00
|
|
|
struct i40e_asq_cmd_details cmd_details;
|
i40e/i40evf: Add nvmupdate support
This implements a state machine intended to support the userland tool for
updating the device eeprom. The state machine implements one-shot reads,
writes, multi-step write sessions, and checksum requests. If we're in the middle
of a multi-step write session, no one should fire off other writes, however, one
shot reads are valid. The userland tool is expected to keep track of its session
status, arrange the placement and ordering of the writes, and deal with the
checksum requirement.
This patch also adds nvmupdate support to ethtool callbacks.
The get_eeprom() and set_eeprom() services in ethtool are used here to
facilitate the userland NVMUpdate tool. The 'magic' value in the get and
set commands is used to pass additional control information for managing
the read and write steps.
The read operation works both as normally expected in the standard ethtool
method, as well as with the extra NVM controls. The write operation
works only for the expanded NVM functions - the normal ethtool method is
not allowed because of the NVM semaphore management needed for multipart
writes, as well as the checksum requirement.
Change-ID: I1d84a170153a9f437906744e2e350fd68fe7563d
Signed-off-by: Shannon Nelson <shannon.nelson@intel.com>
Tested-by: Jim Young <jamesx.m.young@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
2014-07-09 14:46:09 +07:00
|
|
|
i40e_status status;
|
|
|
|
u8 module, transaction;
|
|
|
|
bool last;
|
|
|
|
|
|
|
|
transaction = i40e_nvmupd_get_transaction(cmd->config);
|
|
|
|
module = i40e_nvmupd_get_module(cmd->config);
|
|
|
|
last = (transaction == I40E_NVM_LCB) || (transaction == I40E_NVM_SA);
|
|
|
|
|
2015-08-29 04:55:47 +07:00
|
|
|
memset(&cmd_details, 0, sizeof(cmd_details));
|
|
|
|
cmd_details.wb_desc = &hw->nvm_wb_desc;
|
|
|
|
|
i40e/i40evf: Add nvmupdate support
This implements a state machine intended to support the userland tool for
updating the device eeprom. The state machine implements one-shot reads,
writes, multi-step write sessions, and checksum requests. If we're in the middle
of a multi-step write session, no one should fire off other writes, however, one
shot reads are valid. The userland tool is expected to keep track of its session
status, arrange the placement and ordering of the writes, and deal with the
checksum requirement.
This patch also adds nvmupdate support to ethtool callbacks.
The get_eeprom() and set_eeprom() services in ethtool are used here to
facilitate the userland NVMUpdate tool. The 'magic' value in the get and
set commands is used to pass additional control information for managing
the read and write steps.
The read operation works both as normally expected in the standard ethtool
method, as well as with the extra NVM controls. The write operation
works only for the expanded NVM functions - the normal ethtool method is
not allowed because of the NVM semaphore management needed for multipart
writes, as well as the checksum requirement.
Change-ID: I1d84a170153a9f437906744e2e350fd68fe7563d
Signed-off-by: Shannon Nelson <shannon.nelson@intel.com>
Tested-by: Jim Young <jamesx.m.young@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
2014-07-09 14:46:09 +07:00
|
|
|
status = i40e_aq_read_nvm(hw, module, cmd->offset, (u16)cmd->data_size,
|
2015-08-29 04:55:47 +07:00
|
|
|
bytes, last, &cmd_details);
|
2014-11-13 15:23:15 +07:00
|
|
|
if (status) {
|
|
|
|
i40e_debug(hw, I40E_DEBUG_NVM,
|
|
|
|
"i40e_nvmupd_nvm_read mod 0x%x off 0x%x len 0x%x\n",
|
|
|
|
module, cmd->offset, cmd->data_size);
|
|
|
|
i40e_debug(hw, I40E_DEBUG_NVM,
|
|
|
|
"i40e_nvmupd_nvm_read status %d aq %d\n",
|
|
|
|
status, hw->aq.asq_last_status);
|
2015-07-24 03:54:33 +07:00
|
|
|
*perrno = i40e_aq_rc_to_posix(status, hw->aq.asq_last_status);
|
2014-11-13 15:23:15 +07:00
|
|
|
}
|
i40e/i40evf: Add nvmupdate support
This implements a state machine intended to support the userland tool for
updating the device eeprom. The state machine implements one-shot reads,
writes, multi-step write sessions, and checksum requests. If we're in the middle
of a multi-step write session, no one should fire off other writes, however, one
shot reads are valid. The userland tool is expected to keep track of its session
status, arrange the placement and ordering of the writes, and deal with the
checksum requirement.
This patch also adds nvmupdate support to ethtool callbacks.
The get_eeprom() and set_eeprom() services in ethtool are used here to
facilitate the userland NVMUpdate tool. The 'magic' value in the get and
set commands is used to pass additional control information for managing
the read and write steps.
The read operation works both as normally expected in the standard ethtool
method, as well as with the extra NVM controls. The write operation
works only for the expanded NVM functions - the normal ethtool method is
not allowed because of the NVM semaphore management needed for multipart
writes, as well as the checksum requirement.
Change-ID: I1d84a170153a9f437906744e2e350fd68fe7563d
Signed-off-by: Shannon Nelson <shannon.nelson@intel.com>
Tested-by: Jim Young <jamesx.m.young@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
2014-07-09 14:46:09 +07:00
|
|
|
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* i40e_nvmupd_nvm_erase - Erase an NVM module
|
|
|
|
* @hw: pointer to hardware structure
|
|
|
|
* @cmd: pointer to nvm update command buffer
|
2015-07-24 03:54:33 +07:00
|
|
|
* @perrno: pointer to return error code
|
i40e/i40evf: Add nvmupdate support
This implements a state machine intended to support the userland tool for
updating the device eeprom. The state machine implements one-shot reads,
writes, multi-step write sessions, and checksum requests. If we're in the middle
of a multi-step write session, no one should fire off other writes, however, one
shot reads are valid. The userland tool is expected to keep track of its session
status, arrange the placement and ordering of the writes, and deal with the
checksum requirement.
This patch also adds nvmupdate support to ethtool callbacks.
The get_eeprom() and set_eeprom() services in ethtool are used here to
facilitate the userland NVMUpdate tool. The 'magic' value in the get and
set commands is used to pass additional control information for managing
the read and write steps.
The read operation works both as normally expected in the standard ethtool
method, as well as with the extra NVM controls. The write operation
works only for the expanded NVM functions - the normal ethtool method is
not allowed because of the NVM semaphore management needed for multipart
writes, as well as the checksum requirement.
Change-ID: I1d84a170153a9f437906744e2e350fd68fe7563d
Signed-off-by: Shannon Nelson <shannon.nelson@intel.com>
Tested-by: Jim Young <jamesx.m.young@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
2014-07-09 14:46:09 +07:00
|
|
|
*
|
|
|
|
* module, offset, data_size and data are in cmd structure
|
|
|
|
**/
|
|
|
|
static i40e_status i40e_nvmupd_nvm_erase(struct i40e_hw *hw,
|
|
|
|
struct i40e_nvm_access *cmd,
|
2015-07-24 03:54:33 +07:00
|
|
|
int *perrno)
|
i40e/i40evf: Add nvmupdate support
This implements a state machine intended to support the userland tool for
updating the device eeprom. The state machine implements one-shot reads,
writes, multi-step write sessions, and checksum requests. If we're in the middle
of a multi-step write session, no one should fire off other writes, however, one
shot reads are valid. The userland tool is expected to keep track of its session
status, arrange the placement and ordering of the writes, and deal with the
checksum requirement.
This patch also adds nvmupdate support to ethtool callbacks.
The get_eeprom() and set_eeprom() services in ethtool are used here to
facilitate the userland NVMUpdate tool. The 'magic' value in the get and
set commands is used to pass additional control information for managing
the read and write steps.
The read operation works both as normally expected in the standard ethtool
method, as well as with the extra NVM controls. The write operation
works only for the expanded NVM functions - the normal ethtool method is
not allowed because of the NVM semaphore management needed for multipart
writes, as well as the checksum requirement.
Change-ID: I1d84a170153a9f437906744e2e350fd68fe7563d
Signed-off-by: Shannon Nelson <shannon.nelson@intel.com>
Tested-by: Jim Young <jamesx.m.young@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
2014-07-09 14:46:09 +07:00
|
|
|
{
|
|
|
|
i40e_status status = 0;
|
2015-08-29 04:55:47 +07:00
|
|
|
struct i40e_asq_cmd_details cmd_details;
|
i40e/i40evf: Add nvmupdate support
This implements a state machine intended to support the userland tool for
updating the device eeprom. The state machine implements one-shot reads,
writes, multi-step write sessions, and checksum requests. If we're in the middle
of a multi-step write session, no one should fire off other writes, however, one
shot reads are valid. The userland tool is expected to keep track of its session
status, arrange the placement and ordering of the writes, and deal with the
checksum requirement.
This patch also adds nvmupdate support to ethtool callbacks.
The get_eeprom() and set_eeprom() services in ethtool are used here to
facilitate the userland NVMUpdate tool. The 'magic' value in the get and
set commands is used to pass additional control information for managing
the read and write steps.
The read operation works both as normally expected in the standard ethtool
method, as well as with the extra NVM controls. The write operation
works only for the expanded NVM functions - the normal ethtool method is
not allowed because of the NVM semaphore management needed for multipart
writes, as well as the checksum requirement.
Change-ID: I1d84a170153a9f437906744e2e350fd68fe7563d
Signed-off-by: Shannon Nelson <shannon.nelson@intel.com>
Tested-by: Jim Young <jamesx.m.young@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
2014-07-09 14:46:09 +07:00
|
|
|
u8 module, transaction;
|
|
|
|
bool last;
|
|
|
|
|
|
|
|
transaction = i40e_nvmupd_get_transaction(cmd->config);
|
|
|
|
module = i40e_nvmupd_get_module(cmd->config);
|
|
|
|
last = (transaction & I40E_NVM_LCB);
|
2015-08-29 04:55:47 +07:00
|
|
|
|
|
|
|
memset(&cmd_details, 0, sizeof(cmd_details));
|
|
|
|
cmd_details.wb_desc = &hw->nvm_wb_desc;
|
|
|
|
|
i40e/i40evf: Add nvmupdate support
This implements a state machine intended to support the userland tool for
updating the device eeprom. The state machine implements one-shot reads,
writes, multi-step write sessions, and checksum requests. If we're in the middle
of a multi-step write session, no one should fire off other writes, however, one
shot reads are valid. The userland tool is expected to keep track of its session
status, arrange the placement and ordering of the writes, and deal with the
checksum requirement.
This patch also adds nvmupdate support to ethtool callbacks.
The get_eeprom() and set_eeprom() services in ethtool are used here to
facilitate the userland NVMUpdate tool. The 'magic' value in the get and
set commands is used to pass additional control information for managing
the read and write steps.
The read operation works both as normally expected in the standard ethtool
method, as well as with the extra NVM controls. The write operation
works only for the expanded NVM functions - the normal ethtool method is
not allowed because of the NVM semaphore management needed for multipart
writes, as well as the checksum requirement.
Change-ID: I1d84a170153a9f437906744e2e350fd68fe7563d
Signed-off-by: Shannon Nelson <shannon.nelson@intel.com>
Tested-by: Jim Young <jamesx.m.young@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
2014-07-09 14:46:09 +07:00
|
|
|
status = i40e_aq_erase_nvm(hw, module, cmd->offset, (u16)cmd->data_size,
|
2015-08-29 04:55:47 +07:00
|
|
|
last, &cmd_details);
|
2014-11-13 15:23:15 +07:00
|
|
|
if (status) {
|
|
|
|
i40e_debug(hw, I40E_DEBUG_NVM,
|
|
|
|
"i40e_nvmupd_nvm_erase mod 0x%x off 0x%x len 0x%x\n",
|
|
|
|
module, cmd->offset, cmd->data_size);
|
|
|
|
i40e_debug(hw, I40E_DEBUG_NVM,
|
|
|
|
"i40e_nvmupd_nvm_erase status %d aq %d\n",
|
|
|
|
status, hw->aq.asq_last_status);
|
2015-07-24 03:54:33 +07:00
|
|
|
*perrno = i40e_aq_rc_to_posix(status, hw->aq.asq_last_status);
|
2014-11-13 15:23:15 +07:00
|
|
|
}
|
i40e/i40evf: Add nvmupdate support
This implements a state machine intended to support the userland tool for
updating the device eeprom. The state machine implements one-shot reads,
writes, multi-step write sessions, and checksum requests. If we're in the middle
of a multi-step write session, no one should fire off other writes, however, one
shot reads are valid. The userland tool is expected to keep track of its session
status, arrange the placement and ordering of the writes, and deal with the
checksum requirement.
This patch also adds nvmupdate support to ethtool callbacks.
The get_eeprom() and set_eeprom() services in ethtool are used here to
facilitate the userland NVMUpdate tool. The 'magic' value in the get and
set commands is used to pass additional control information for managing
the read and write steps.
The read operation works both as normally expected in the standard ethtool
method, as well as with the extra NVM controls. The write operation
works only for the expanded NVM functions - the normal ethtool method is
not allowed because of the NVM semaphore management needed for multipart
writes, as well as the checksum requirement.
Change-ID: I1d84a170153a9f437906744e2e350fd68fe7563d
Signed-off-by: Shannon Nelson <shannon.nelson@intel.com>
Tested-by: Jim Young <jamesx.m.young@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
2014-07-09 14:46:09 +07:00
|
|
|
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* i40e_nvmupd_nvm_write - Write NVM
|
|
|
|
* @hw: pointer to hardware structure
|
|
|
|
* @cmd: pointer to nvm update command buffer
|
|
|
|
* @bytes: pointer to the data buffer
|
2015-07-24 03:54:33 +07:00
|
|
|
* @perrno: pointer to return error code
|
i40e/i40evf: Add nvmupdate support
This implements a state machine intended to support the userland tool for
updating the device eeprom. The state machine implements one-shot reads,
writes, multi-step write sessions, and checksum requests. If we're in the middle
of a multi-step write session, no one should fire off other writes, however, one
shot reads are valid. The userland tool is expected to keep track of its session
status, arrange the placement and ordering of the writes, and deal with the
checksum requirement.
This patch also adds nvmupdate support to ethtool callbacks.
The get_eeprom() and set_eeprom() services in ethtool are used here to
facilitate the userland NVMUpdate tool. The 'magic' value in the get and
set commands is used to pass additional control information for managing
the read and write steps.
The read operation works both as normally expected in the standard ethtool
method, as well as with the extra NVM controls. The write operation
works only for the expanded NVM functions - the normal ethtool method is
not allowed because of the NVM semaphore management needed for multipart
writes, as well as the checksum requirement.
Change-ID: I1d84a170153a9f437906744e2e350fd68fe7563d
Signed-off-by: Shannon Nelson <shannon.nelson@intel.com>
Tested-by: Jim Young <jamesx.m.young@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
2014-07-09 14:46:09 +07:00
|
|
|
*
|
|
|
|
* module, offset, data_size and data are in cmd structure
|
|
|
|
**/
|
|
|
|
static i40e_status i40e_nvmupd_nvm_write(struct i40e_hw *hw,
|
|
|
|
struct i40e_nvm_access *cmd,
|
2015-07-24 03:54:33 +07:00
|
|
|
u8 *bytes, int *perrno)
|
i40e/i40evf: Add nvmupdate support
This implements a state machine intended to support the userland tool for
updating the device eeprom. The state machine implements one-shot reads,
writes, multi-step write sessions, and checksum requests. If we're in the middle
of a multi-step write session, no one should fire off other writes, however, one
shot reads are valid. The userland tool is expected to keep track of its session
status, arrange the placement and ordering of the writes, and deal with the
checksum requirement.
This patch also adds nvmupdate support to ethtool callbacks.
The get_eeprom() and set_eeprom() services in ethtool are used here to
facilitate the userland NVMUpdate tool. The 'magic' value in the get and
set commands is used to pass additional control information for managing
the read and write steps.
The read operation works both as normally expected in the standard ethtool
method, as well as with the extra NVM controls. The write operation
works only for the expanded NVM functions - the normal ethtool method is
not allowed because of the NVM semaphore management needed for multipart
writes, as well as the checksum requirement.
Change-ID: I1d84a170153a9f437906744e2e350fd68fe7563d
Signed-off-by: Shannon Nelson <shannon.nelson@intel.com>
Tested-by: Jim Young <jamesx.m.young@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
2014-07-09 14:46:09 +07:00
|
|
|
{
|
|
|
|
i40e_status status = 0;
|
2015-08-29 04:55:47 +07:00
|
|
|
struct i40e_asq_cmd_details cmd_details;
|
i40e/i40evf: Add nvmupdate support
This implements a state machine intended to support the userland tool for
updating the device eeprom. The state machine implements one-shot reads,
writes, multi-step write sessions, and checksum requests. If we're in the middle
of a multi-step write session, no one should fire off other writes, however, one
shot reads are valid. The userland tool is expected to keep track of its session
status, arrange the placement and ordering of the writes, and deal with the
checksum requirement.
This patch also adds nvmupdate support to ethtool callbacks.
The get_eeprom() and set_eeprom() services in ethtool are used here to
facilitate the userland NVMUpdate tool. The 'magic' value in the get and
set commands is used to pass additional control information for managing
the read and write steps.
The read operation works both as normally expected in the standard ethtool
method, as well as with the extra NVM controls. The write operation
works only for the expanded NVM functions - the normal ethtool method is
not allowed because of the NVM semaphore management needed for multipart
writes, as well as the checksum requirement.
Change-ID: I1d84a170153a9f437906744e2e350fd68fe7563d
Signed-off-by: Shannon Nelson <shannon.nelson@intel.com>
Tested-by: Jim Young <jamesx.m.young@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
2014-07-09 14:46:09 +07:00
|
|
|
u8 module, transaction;
|
|
|
|
bool last;
|
|
|
|
|
|
|
|
transaction = i40e_nvmupd_get_transaction(cmd->config);
|
|
|
|
module = i40e_nvmupd_get_module(cmd->config);
|
|
|
|
last = (transaction & I40E_NVM_LCB);
|
2014-11-13 15:23:15 +07:00
|
|
|
|
2015-08-29 04:55:47 +07:00
|
|
|
memset(&cmd_details, 0, sizeof(cmd_details));
|
|
|
|
cmd_details.wb_desc = &hw->nvm_wb_desc;
|
|
|
|
|
i40e/i40evf: Add nvmupdate support
This implements a state machine intended to support the userland tool for
updating the device eeprom. The state machine implements one-shot reads,
writes, multi-step write sessions, and checksum requests. If we're in the middle
of a multi-step write session, no one should fire off other writes, however, one
shot reads are valid. The userland tool is expected to keep track of its session
status, arrange the placement and ordering of the writes, and deal with the
checksum requirement.
This patch also adds nvmupdate support to ethtool callbacks.
The get_eeprom() and set_eeprom() services in ethtool are used here to
facilitate the userland NVMUpdate tool. The 'magic' value in the get and
set commands is used to pass additional control information for managing
the read and write steps.
The read operation works both as normally expected in the standard ethtool
method, as well as with the extra NVM controls. The write operation
works only for the expanded NVM functions - the normal ethtool method is
not allowed because of the NVM semaphore management needed for multipart
writes, as well as the checksum requirement.
Change-ID: I1d84a170153a9f437906744e2e350fd68fe7563d
Signed-off-by: Shannon Nelson <shannon.nelson@intel.com>
Tested-by: Jim Young <jamesx.m.young@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
2014-07-09 14:46:09 +07:00
|
|
|
status = i40e_aq_update_nvm(hw, module, cmd->offset,
|
2015-08-29 04:55:47 +07:00
|
|
|
(u16)cmd->data_size, bytes, last,
|
|
|
|
&cmd_details);
|
2014-11-13 15:23:15 +07:00
|
|
|
if (status) {
|
|
|
|
i40e_debug(hw, I40E_DEBUG_NVM,
|
|
|
|
"i40e_nvmupd_nvm_write mod 0x%x off 0x%x len 0x%x\n",
|
|
|
|
module, cmd->offset, cmd->data_size);
|
|
|
|
i40e_debug(hw, I40E_DEBUG_NVM,
|
|
|
|
"i40e_nvmupd_nvm_write status %d aq %d\n",
|
|
|
|
status, hw->aq.asq_last_status);
|
2015-07-24 03:54:33 +07:00
|
|
|
*perrno = i40e_aq_rc_to_posix(status, hw->aq.asq_last_status);
|
2014-11-13 15:23:15 +07:00
|
|
|
}
|
i40e/i40evf: Add nvmupdate support
This implements a state machine intended to support the userland tool for
updating the device eeprom. The state machine implements one-shot reads,
writes, multi-step write sessions, and checksum requests. If we're in the middle
of a multi-step write session, no one should fire off other writes, however, one
shot reads are valid. The userland tool is expected to keep track of its session
status, arrange the placement and ordering of the writes, and deal with the
checksum requirement.
This patch also adds nvmupdate support to ethtool callbacks.
The get_eeprom() and set_eeprom() services in ethtool are used here to
facilitate the userland NVMUpdate tool. The 'magic' value in the get and
set commands is used to pass additional control information for managing
the read and write steps.
The read operation works both as normally expected in the standard ethtool
method, as well as with the extra NVM controls. The write operation
works only for the expanded NVM functions - the normal ethtool method is
not allowed because of the NVM semaphore management needed for multipart
writes, as well as the checksum requirement.
Change-ID: I1d84a170153a9f437906744e2e350fd68fe7563d
Signed-off-by: Shannon Nelson <shannon.nelson@intel.com>
Tested-by: Jim Young <jamesx.m.young@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
2014-07-09 14:46:09 +07:00
|
|
|
|
|
|
|
return status;
|
|
|
|
}
|