From: Dave Jiang <dave.jiang@intel.com>
To: Dan Williams <dan.j.williams@intel.com>,
"Verma, Vishal L" <vishal.l.verma@intel.com>
Cc: "linux-nvdimm@lists.01.org" <linux-nvdimm@lists.01.org>
Subject: Re: [PATCH v3 1/2] ndctl: add check for update firmware supported
Date: Thu, 8 Mar 2018 17:27:02 -0700 [thread overview]
Message-ID: <6a9fb3ca-c6fa-2c0d-6531-778e14723e99@intel.com> (raw)
In-Reply-To: <CAPcyv4g_BSfP0Rg+8izUM-TyM1thmHMt4nmgijR7vKwMVsvv9A@mail.gmail.com>
On 03/08/2018 05:23 PM, Dan Williams wrote:
> On Thu, Mar 8, 2018 at 4:10 PM, Verma, Vishal L
> <vishal.l.verma@intel.com> wrote:
>>
>> On Tue, 2018-03-06 at 16:46 -0700, Dave Jiang wrote:
>>> Adding generic and intel support function to allow check if update
>>> firmware
>>> is supported by the kernel.
>>>
>>> Signed-off-by: Dave Jiang <dave.jiang@intel.com>
>>> Reviewed-by: Dan Williams <dan.j.williams@intel.com>
>>> ---
>>> ndctl/lib/firmware.c | 11 +++++++++++
>>> ndctl/lib/intel.c | 24 ++++++++++++++++++++++++
>>> ndctl/lib/libndctl.sym | 1 +
>>> ndctl/lib/private.h | 1 +
>>> ndctl/libndctl.h | 1 +
>>> ndctl/update.c | 13 +++++++++++++
>>> 6 files changed, 51 insertions(+)
>>>
>>> diff --git a/ndctl/lib/firmware.c b/ndctl/lib/firmware.c
>>> index f6deec5d..277b5399 100644
>>> --- a/ndctl/lib/firmware.c
>>> +++ b/ndctl/lib/firmware.c
>>> @@ -107,3 +107,14 @@ ndctl_cmd_fw_xlat_firmware_status(struct
>>> ndctl_cmd *cmd)
>>> else
>>> return FW_EUNKNOWN;
>>> }
>>> +
>>> +NDCTL_EXPORT int
>>> +ndctl_dimm_fw_update_supported(struct ndctl_dimm *dimm)
>>> +{
>>> + struct ndctl_dimm_ops *ops = dimm->ops;
>>> +
>>> + if (ops && ops->fw_update_supported)
>>> + return ops->fw_update_supported(dimm);
>>> + else
>>> + return -ENOTTY;
>>> +}
>>> diff --git a/ndctl/lib/intel.c b/ndctl/lib/intel.c
>>> index cee5204c..a4f0af26 100644
>>> --- a/ndctl/lib/intel.c
>>> +++ b/ndctl/lib/intel.c
>>> @@ -650,6 +650,29 @@ intel_dimm_cmd_new_lss(struct ndctl_dimm *dimm)
>>> return cmd;
>>> }
>>>
>>> +static int intel_dimm_fw_update_supported(struct ndctl_dimm *dimm)
>>> +{
>>> + struct ndctl_ctx *ctx = ndctl_dimm_get_ctx(dimm);
>>> +
>>> + if (!ndctl_dimm_is_cmd_supported(dimm, ND_CMD_CALL)) {
>>> + dbg(ctx, "unsupported cmd: %d\n", ND_CMD_CALL);
>>> + return -EOPNOTSUPP;
>>> + }
>>> +
>>> + /*
>>> + * We only need to check FW_GET_INFO. If that isn't
>>> supported then
>>> + * the others aren't either.
>>> + */
>>
>> Since this is an is_supported type function, for completeness,
>> shouldn't we just check for all the related DSMs? I agree we will
>> probably never hit the case where say FW_GET_INFO is supported but
>> others aren't, but just adding in the other checks is probably better
>> than the possibility of running into a case where this passes but one
>> of the other functions isn't supported.
>
> Some of them aren't required for example I think this gauntlet of
> checks is overkill, especially when we consider other vendor firmware
> update mechanisms that might not implement all of these...
>
> fw->store_size = ndctl_cmd_fw_info_get_storage_size(cmd);
> if (fw->store_size == UINT_MAX)
> return -ENXIO;
>
> fw->update_size = ndctl_cmd_fw_info_get_max_send_len(cmd);
> if (fw->update_size == UINT_MAX)
> return -ENXIO;
>
> fw->query_interval = ndctl_cmd_fw_info_get_query_interval(cmd);
> if (fw->query_interval == UINT_MAX)
> return -ENXIO;
>
> fw->max_query = ndctl_cmd_fw_info_get_max_query_time(cmd);
> if (fw->max_query == UINT_MAX)
> return -ENXIO;
>
> fw->run_version = ndctl_cmd_fw_info_get_run_version(cmd);
> if (fw->run_version == ULLONG_MAX)
> return -ENXIO;
>
> ...so yes, I think it would be could to expand the 'supported' checks,
> but only to the bare minimum that would allow a firmware update to
> complete.
>
At least for the Intel firmware update, every one of the DSM calls are
required to complete all the steps.
_______________________________________________
Linux-nvdimm mailing list
Linux-nvdimm@lists.01.org
https://lists.01.org/mailman/listinfo/linux-nvdimm
next prev parent reply other threads:[~2018-03-09 0:20 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-03-06 23:46 [PATCH v3 0/2] ndctl: move firmware update to dimm action Dave Jiang
2018-03-06 23:46 ` [PATCH v3 1/2] ndctl: add check for update firmware supported Dave Jiang
2018-03-09 0:10 ` Verma, Vishal L
2018-03-09 0:23 ` Dan Williams
2018-03-09 0:27 ` Dave Jiang [this message]
2018-03-09 0:37 ` Dan Williams
2018-03-06 23:46 ` [PATCH v3 2/2] ndctl: merge firmware-update to dimm.c as one of the dimm ops Dave Jiang
2018-03-09 0:10 ` Verma, Vishal L
-- strict thread matches above, loose matches on Subject: below --
2018-03-06 23:45 [PATCH v3 1/2] ndctl: add check for update firmware supported Dave Jiang
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=6a9fb3ca-c6fa-2c0d-6531-778e14723e99@intel.com \
--to=dave.jiang@intel.com \
--cc=dan.j.williams@intel.com \
--cc=linux-nvdimm@lists.01.org \
--cc=vishal.l.verma@intel.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox