All of lore.kernel.org
 help / color / mirror / Atom feed
From: Jacob Keller <jacob.e.keller@intel.com>
To: Jakub Kicinski <kubakici@wp.pl>
Cc: netdev@vger.kernel.org, Jiri Pirko <jiri@resnulli.us>,
	Jesse Brandeburg <jesse.brandeburg@intel.com>,
	Tom Herbert <tom@herbertland.com>
Subject: Re: [RFC PATCH net-next 6/6] ice: implement devlink parameters to control flash update
Date: Fri, 10 Jul 2020 10:32:24 -0700	[thread overview]
Message-ID: <ee8fc0a5-6cea-2689-372c-4e733cc06056@intel.com> (raw)
In-Reply-To: <20200709171913.5b779cc7@kicinski-fedora-pc1c0hjn.dhcp.thefacebook.com>



On 7/9/2020 5:19 PM, Jakub Kicinski wrote:
> On Thu,  9 Jul 2020 14:26:52 -0700 Jacob Keller wrote:
>> The flash update for the ice hardware currently supports a single fixed
>> configuration:
>>
>> * Firmware is always asked to preserve all changeable fields
>> * The driver never allows downgrades
>> * The driver will not allow canceling a previous update that never
>>   completed (for example because an EMP reset never occurred)
>> * The driver does not attempt to trigger an EMP reset immediately.
>>
>> This default mode of operation is reasonable. However, it is often
>> useful to allow system administrators more control over the update
>> process. To enable this, implement devlink parameters that allow the
>> system administrator to specify the desired behaviors:
>>
>> * 'reset_after_flash_update'
>>   If enabled, the driver will request that the firmware immediately
>>   trigger an EMP reset when completing the device update. This will
>>   result in the device switching active banks immediately and
>>   re-initializing with the new firmware.
> 
> This should probably be handled through a reset API like what
> Vasundhara is already working on.
> 

Sure. I hadn't seen that work but I'll go take a look.

>> * 'allow_downgrade_on_flash_update'
>>   If enabled, the driver will attempt to update device flash even when
>>   firmware indicates that such an update would be a downgrade.


There is also some trickiness here, because what this parameter does is
cause the driver to ignore the firmware version check. I suppose we
could just change the default behavior to ignoring that and assume user
space will check itself?

>> * 'ignore_pending_flash_update'
>>   If enabled, the device driver will cancel a previous pending update.
>>   A pending update is one where the steps to write the update to the NVM
>>   bank has finished, but the device never reset, as the system had not
>>   yet been rebooted.
> 
> These can be implemented in user space based on the values of running
> and stored versions from devlink info.

So, there's some trickiness here. We actually have to perform some steps
to cancel an update. Perhaps we should introduce a new option to request
that a previous update be cancelled? If we don't tell the firmware to
cancel the update, then future update requests will simply fail with
some errors.

> 
>> * 'flash_update_preservation_level'
>>   The value determines the preservation mode to request from firmware,
>>   among the following 4 choices:
>>   * PRESERVE_ALL (0)
>>     Preserve all settings and fields in the NVM configuration
>>   * PRESERVE_LIMITED (1)
>>     Preserve only a limited set of fields, including the VPD, PCI serial
>>     ID, MAC address, etc. This results in permanent settings being
>>     reset, including changes to the port configuration, such as the
>>     number of physical functions created.
>>   * PRESERVE_FACTORY_SETTINGS (2)
>>     Reset all configuration fields to the factory default settings
>>     stored within the NVM.
>>   * PRESERVE_NONE (3)
>>     Do not perform any preservation.
> 
> Could this also be handled in a separate reset API? It seems useful to
> be able to reset to factory defaults at any time, not just FW upgrade..
>
I'm not sure. At least the way it's described in the datasheet here is
that this must be done during an update. I'll have to look into this
further.

For the other 3 (I kept preserve none for completeness), these are
referring to how much of the settings we preserve when updating to the
new image, so I think they only apply at update time.

Thanks,
Jake

  parent reply	other threads:[~2020-07-10 17:32 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-07-09 21:26 [RFC PATCH net-next 0/6] introduce PLDM firmware update library Jacob Keller
2020-07-09 21:26 ` [RFC PATCH net-next 1/6] ice: Add support for unified NVM update flow capability Jacob Keller
2020-07-09 21:26 ` [RFC PATCH net-next 2/6] ice: Add AdminQ commands for FW update Jacob Keller
2020-07-09 21:26 ` [RFC PATCH net-next 3/6] ice: add flags indicating pending update of firmware module Jacob Keller
2020-07-09 21:26 ` [RFC PATCH net-next 4/6] Add pldmfw library for PLDM firmware update Jacob Keller
2020-07-09 21:26 ` [RFC PATCH net-next 5/6] ice: implement device flash update via devlink Jacob Keller
2020-07-09 21:26 ` [RFC PATCH net-next 6/6] ice: implement devlink parameters to control flash update Jacob Keller
2020-07-10  0:19   ` Jakub Kicinski
2020-07-10  6:25     ` Vasundhara Volam
2020-07-10 17:32     ` Jacob Keller [this message]
2020-07-10 20:25       ` Jakub Kicinski
2020-07-10 20:32         ` Jacob Keller
2020-07-15 21:41           ` Jacob Keller
2020-07-15 23:23             ` Jakub Kicinski
2020-07-16  0:21               ` Jacob Keller
2020-07-16 21:29                 ` Jacob Keller
2020-07-16 21:42                   ` Jakub Kicinski
2020-07-16 21:52                     ` Jacob Keller
2020-07-16 22:18                       ` Jakub Kicinski
2020-07-17 17:21                         ` Jacob Keller

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=ee8fc0a5-6cea-2689-372c-4e733cc06056@intel.com \
    --to=jacob.e.keller@intel.com \
    --cc=jesse.brandeburg@intel.com \
    --cc=jiri@resnulli.us \
    --cc=kubakici@wp.pl \
    --cc=netdev@vger.kernel.org \
    --cc=tom@herbertland.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.