From: Michal Swiatkowski <michal.swiatkowski@linux.intel.com>
To: Paul M Stillwell Jr <paul.m.stillwell.jr@intel.com>
Cc: intel-wired-lan@lists.osuosl.org
Subject: Re: [Intel-wired-lan] [PATCH net-next v5 3/5] ice: add ability to query/set FW log level and resolution
Date: Thu, 12 Jan 2023 11:00:14 +0100 [thread overview]
Message-ID: <Y7/aLiP5b3oWSV+R@localhost.localdomain> (raw)
In-Reply-To: <20230111191906.131-4-paul.m.stillwell.jr@intel.com>
On Wed, Jan 11, 2023 at 11:19:04AM -0800, Paul M Stillwell Jr wrote:
> The E8xx has the ability to change the FW log level and
> the granularity at which the logs get output. Enable
> the ability to see what the current values are and to
> change them.
>
> The following devlink commands are now supported:
>
> devlink dev param set <pci dev> name fwlog_enabled value <true/false> cmode runtime
> devlink dev param set <pci dev> name fwlog_level value <0-4> cmode runtime
> devlink dev param set <pci dev> name fwlog_resolution value <1-128> cmode runtime
>
> Signed-off-by: Paul M Stillwell Jr <paul.m.stillwell.jr@intel.com>
> ---
> .../net/ethernet/intel/ice/ice_adminq_cmd.h | 2 +
> drivers/net/ethernet/intel/ice/ice_common.c | 4 +-
> drivers/net/ethernet/intel/ice/ice_devlink.c | 131 ++++++++-
> drivers/net/ethernet/intel/ice/ice_fwlog.c | 278 +++++++++++++++++-
> drivers/net/ethernet/intel/ice/ice_fwlog.h | 5 +
> drivers/net/ethernet/intel/ice/ice_type.h | 1 +
> 6 files changed, 416 insertions(+), 5 deletions(-)
>
[...]
> diff --git a/drivers/net/ethernet/intel/ice/ice_fwlog.c b/drivers/net/ethernet/intel/ice/ice_fwlog.c
> index efea71b6c9f8..6973f01749f9 100644
> --- a/drivers/net/ethernet/intel/ice/ice_fwlog.c
> +++ b/drivers/net/ethernet/intel/ice/ice_fwlog.c
> @@ -4,6 +4,165 @@
> #include "ice_common.h"
> #include "ice_fwlog.h"
>
> +/**
> + * cache_cfg - Cache FW logging config
> + * @hw: pointer to the HW structure
> + * @cfg: config to cache
> + */
> +static void cache_cfg(struct ice_hw *hw, struct ice_fwlog_cfg *cfg)
> +{
> + hw->fwlog_cfg = *cfg;
> +}
> +
> +/**
> + * valid_module_entries - validate all the module entry IDs and log levels
> + * @hw: pointer to the HW structure
> + * @entries: entries to validate
> + * @num_entries: number of entries to validate
> + */
> +static bool
> +valid_module_entries(struct ice_hw *hw, struct ice_fwlog_module_entry *entries,
> + u16 num_entries)
> +{
> + int i;
> +
> + if (!entries) {
> + ice_debug(hw, ICE_DBG_FW_LOG, "Null ice_fwlog_module_entry array\n");
> + return false;
> + }
> +
> + if (!num_entries) {
> + ice_debug(hw, ICE_DBG_FW_LOG, "num_entries must be non-zero\n");
> + return false;
> + }
> +
> + for (i = 0; i < num_entries; i++) {
> + struct ice_fwlog_module_entry *entry = &entries[i];
> +
> + if (entry->module_id >= ICE_AQC_FW_LOG_ID_MAX) {
> + ice_debug(hw, ICE_DBG_FW_LOG, "Invalid module_id %u, max valid module_id is %u\n",
> + entry->module_id, ICE_AQC_FW_LOG_ID_MAX - 1);
> + return false;
> + }
> +
> + if (entry->log_level >= ICE_FWLOG_LEVEL_INVALID) {
> + ice_debug(hw, ICE_DBG_FW_LOG, "Invalid log_level %u, max valid log_level is %u\n",
> + entry->log_level,
> + ICE_AQC_FW_LOG_ID_MAX - 1);
> + return false;
> + }
> + }
> +
> + return true;
> +}
> +
> +/**
> + * valid_cfg - validate entire configuration
> + * @hw: pointer to the HW structure
> + * @cfg: config to validate
> + */
> +static bool valid_cfg(struct ice_hw *hw, struct ice_fwlog_cfg *cfg)
> +{
> + if (!cfg) {
> + ice_debug(hw, ICE_DBG_FW_LOG, "Null ice_fwlog_cfg\n");
> + return false;
> + }
> +
> + if (cfg->log_resolution < ICE_AQC_FW_LOG_MIN_RESOLUTION ||
> + cfg->log_resolution > ICE_AQC_FW_LOG_MAX_RESOLUTION) {
> + ice_debug(hw, ICE_DBG_FW_LOG, "Unsupported log_resolution %u, must be between %u and %u\n",
> + cfg->log_resolution, ICE_AQC_FW_LOG_MIN_RESOLUTION,
> + ICE_AQC_FW_LOG_MAX_RESOLUTION);
> + return false;
> + }
> +
> + if (!valid_module_entries(hw, cfg->module_entries,
> + ICE_AQC_FW_LOG_ID_MAX))
> + return false;
> +
> + return true;
return valid_module_entries();
> +}
> +
> +/**
> + * ice_fwlog_init - Initialize FW logging variables
> + * @hw: pointer to the HW structure
> + *
> + * This function should be called on driver initialization during
> + * ice_init_hw().
> + */
> +int ice_fwlog_init(struct ice_hw *hw)
> +{
> + int status;
> +
> + ice_fwlog_set_supported(hw);
> +
> + if (ice_fwlog_supported(hw)) {
> + struct ice_fwlog_cfg *cfg;
> +
> + cfg = kzalloc(sizeof(*cfg), GFP_KERNEL);
I don't understand why hw->cfg can't be used here? It will simplify all
this cache_cfg. Is there any reason to alloc config and than set hw->cfg
to it in get flow?
When config parameters are being set from devlink context hw->cfg is
used instead of new allocated config like here (and than casched).
> + if (!cfg)
> + return -ENOMEM;
> +
> + /* read the current config from the FW and store it */
> + status = ice_fwlog_get(hw, cfg);
> + if (status)
> + return status;
Shouldn't cfg be free here? If ice_fwlog_get fails cfg isn't casched.
> + }
> +
> + return 0;
> +}
> +
[...]
>
> --
> 2.35.1
>
> _______________________________________________
> Intel-wired-lan mailing list
> Intel-wired-lan@osuosl.org
> https://lists.osuosl.org/mailman/listinfo/intel-wired-lan
_______________________________________________
Intel-wired-lan mailing list
Intel-wired-lan@osuosl.org
https://lists.osuosl.org/mailman/listinfo/intel-wired-lan
next prev parent reply other threads:[~2023-01-12 10:00 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-01-11 19:19 [Intel-wired-lan] [PATCH net-next v5 0/5] add v2 FW logging for ice driver Paul M Stillwell Jr
2023-01-11 19:19 ` [Intel-wired-lan] [PATCH net-next v5 1/5] ice: remove FW logging code Paul M Stillwell Jr
2023-01-11 19:19 ` [Intel-wired-lan] [PATCH net-next v5 2/5] ice: enable devlink to check FW logging status Paul M Stillwell Jr
2023-01-12 9:38 ` Michal Swiatkowski
2023-01-12 22:53 ` Paul M Stillwell Jr
2023-01-13 6:10 ` Michal Swiatkowski
2023-01-11 19:19 ` [Intel-wired-lan] [PATCH net-next v5 3/5] ice: add ability to query/set FW log level and resolution Paul M Stillwell Jr
2023-01-12 10:00 ` Michal Swiatkowski [this message]
2023-01-13 22:07 ` Paul M Stillwell Jr
2023-01-11 19:19 ` [Intel-wired-lan] [PATCH net-next v5 4/5] ice: disable FW logging on driver unload Paul M Stillwell Jr
2023-01-12 10:49 ` Michal Swiatkowski
2023-01-13 22:13 ` Paul M Stillwell Jr
2023-01-16 7:41 ` Michal Swiatkowski
2023-01-11 19:19 ` [Intel-wired-lan] [PATCH net-next v5 5/5] ice: use debugfs to output FW log data Paul M Stillwell Jr
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=Y7/aLiP5b3oWSV+R@localhost.localdomain \
--to=michal.swiatkowski@linux.intel.com \
--cc=intel-wired-lan@lists.osuosl.org \
--cc=paul.m.stillwell.jr@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