public inbox for linux-arm-kernel@lists.infradead.org
 help / color / mirror / Atom feed
From: Mathieu Poirier <mathieu.poirier@linaro.org>
To: Mike Leach <mike.leach@linaro.org>
Cc: coresight@lists.linaro.org, linux-arm-kernel@lists.infradead.org,
	suzuki.poulose@arm.com, leo.yan@linaro.org
Subject: Re: [RFC PATCH 4/8] coresight: configfs: Allow configfs to activate configuration.
Date: Tue, 18 May 2021 13:36:39 -0600	[thread overview]
Message-ID: <20210518193639.GC776252@xps15> (raw)
In-Reply-To: <20210512211752.4103-5-mike.leach@linaro.org>

Please remove the '.' on every patch header.

On Wed, May 12, 2021 at 10:17:48PM +0100, Mike Leach wrote:
> Adds configfs attributes to allow a configuration to be enabled for use
> when sysfs is used to control CoreSight.
> 
> perf retains independent enabling of configurations.
> 
> Signed-off-by: Mike Leach <mike.leach@linaro.org>
> ---
>  .../coresight/coresight-etm4x-core.c          |   5 +
>  .../coresight/coresight-syscfg-configfs.c     |  67 +++++++++
>  .../coresight/coresight-syscfg-configfs.h     |   2 +
>  .../hwtracing/coresight/coresight-syscfg.c    | 129 ++++++++++++++----
>  .../hwtracing/coresight/coresight-syscfg.h    |   7 +-
>  5 files changed, 182 insertions(+), 28 deletions(-)
> 
> diff --git a/drivers/hwtracing/coresight/coresight-etm4x-core.c b/drivers/hwtracing/coresight/coresight-etm4x-core.c
> index b7a4aeaa2bc7..2637096c4621 100644
> --- a/drivers/hwtracing/coresight/coresight-etm4x-core.c
> +++ b/drivers/hwtracing/coresight/coresight-etm4x-core.c
> @@ -688,6 +688,11 @@ static int etm4_enable_sysfs(struct coresight_device *csdev)
>  	struct etm4_enable_arg arg = { };
>  	int ret;
>  
> +	/* enable any config activated by configfs */
> +	ret = cscfg_csdev_enable_active_config(csdev, 0, 0);
> +	if (ret)
> +		return ret;
> +
>  	spin_lock(&drvdata->spinlock);
>  
>  	/*
> diff --git a/drivers/hwtracing/coresight/coresight-syscfg-configfs.c b/drivers/hwtracing/coresight/coresight-syscfg-configfs.c
> index 345a62f1b728..ae79ae8b1d7e 100644
> --- a/drivers/hwtracing/coresight/coresight-syscfg-configfs.c
> +++ b/drivers/hwtracing/coresight/coresight-syscfg-configfs.c
> @@ -6,6 +6,7 @@
>  
>  #include <linux/configfs.h>
>  
> +#include "coresight-config.h"
>  #include "coresight-syscfg-configfs.h"
>  
>  /* create a default ci_type. */
> @@ -87,9 +88,75 @@ static ssize_t cscfg_cfg_values_show(struct config_item *item, char *page)
>  }
>  CONFIGFS_ATTR_RO(cscfg_cfg_, values);
>  
> +static ssize_t cscfg_cfg_activate_show(struct config_item *item, char *page)
> +{
> +	struct cscfg_fs_config *fs_config = container_of(to_config_group(item),
> +							 struct cscfg_fs_config, group);
> +
> +	return scnprintf(page, PAGE_SIZE, "%d\n", fs_config->active);
> +}
> +
> +static ssize_t cscfg_cfg_activate_store(struct config_item *item,
> +					const char *page, size_t count)
> +{
> +	struct cscfg_fs_config *fs_config = container_of(to_config_group(item),
> +							 struct cscfg_fs_config, group);
> +	int err;
> +	bool val;
> +
> +	err = kstrtobool(page, &val);
> +	if (!err)
> +		err = cscfg_config_sysfs_activation(fs_config->config_desc, val);
> +	if (!err) {
> +		fs_config->active = val;
> +		if (val)
> +			cscfg_config_sysfs_preset(fs_config->preset);
> +	}
> +	return err ? err : count;
> +}
> +CONFIGFS_ATTR(cscfg_cfg_, activate);
> +
> +static ssize_t cscfg_cfg_active_preset_show(struct config_item *item, char *page)
> +{
> +	struct cscfg_fs_config *fs_config = container_of(to_config_group(item),
> +							 struct cscfg_fs_config, group);
> +
> +	return scnprintf(page, PAGE_SIZE, "%d\n", fs_config->preset);
> +}
> +
> +static ssize_t cscfg_cfg_active_preset_store(struct config_item *item,
> +					     const char *page, size_t count)
> +{
> +	struct cscfg_fs_config *fs_config = container_of(to_config_group(item),
> +							 struct cscfg_fs_config, group);
> +	int preset, err;
> +
> +	err = kstrtoint(page, 0, &preset);
> +	if (!err) {
> +		/*
> +		 * presets start at 1, and go up to max (15),
> +		 * but the config may provide fewer.
> +		 */
> +		if ((preset < 1) || (preset > fs_config->config_desc->nr_presets))
> +			err = -EINVAL;
> +	}
> +
> +	if (!err) {
> +		/* set new value */
> +		fs_config->preset = preset;
> +		/* set on system if active */
> +		if (fs_config->active)
> +			cscfg_config_sysfs_preset(fs_config->preset);
> +	}
> +	return err ? err : count;
> +}
> +CONFIGFS_ATTR(cscfg_cfg_, active_preset);
> +
>  static struct configfs_attribute *cscfg_config_view_attrs[] = {
>  	&cscfg_cfg_attr_description,
>  	&cscfg_cfg_attr_feature_refs,
> +	&cscfg_cfg_attr_activate,
> +	&cscfg_cfg_attr_active_preset,
>  	NULL,
>  };
>  
> diff --git a/drivers/hwtracing/coresight/coresight-syscfg-configfs.h b/drivers/hwtracing/coresight/coresight-syscfg-configfs.h
> index ea1e54d29f7f..373d84d43268 100644
> --- a/drivers/hwtracing/coresight/coresight-syscfg-configfs.h
> +++ b/drivers/hwtracing/coresight/coresight-syscfg-configfs.h
> @@ -15,6 +15,8 @@
>  struct cscfg_fs_config {
>  	struct cscfg_config_desc *config_desc;
>  	struct config_group group;
> +	bool active;
> +	int preset;
>  };
>  
>  /* container for feature view */
> diff --git a/drivers/hwtracing/coresight/coresight-syscfg.c b/drivers/hwtracing/coresight/coresight-syscfg.c
> index 26c1a244c2b1..ab74e33b892b 100644
> --- a/drivers/hwtracing/coresight/coresight-syscfg.c
> +++ b/drivers/hwtracing/coresight/coresight-syscfg.c
> @@ -743,32 +743,23 @@ void cscfg_csdev_reset_feats(struct coresight_device *csdev)
>  }
>  EXPORT_SYMBOL_GPL(cscfg_csdev_reset_feats);
>  
> -/**
> - * cscfg_activate_config -  Mark a configuration descriptor as active.
> - *
> - * This will be seen when csdev devices are enabled in the system.
> - * Only activated configurations can be enabled on individual devices.
> - * Activation protects the configuration from alteration or removal while
> - * active.
> - *
> - * Selection by hash value - generated from the configuration name when it
> - * was loaded and added to the cs_etm/configurations file system for selection
> - * by perf.
> +/*
> + * This activate configuration for either perf or sysfs. Perf can have multiple
> + * active configs, selected per event, sysfs is limited to one.
>   *
>   * Increments the configuration descriptor active count and the global active
>   * count.
>   *
>   * @cfg_hash: Hash value of the selected configuration name.
>   */
> -int cscfg_activate_config(unsigned long cfg_hash)
> +static int _cscfg_activate_config(unsigned long cfg_hash)
>  {
>  	struct cscfg_config_desc *config_desc;
>  	int err = -EINVAL;
>  
> -	mutex_lock(&cscfg_mutex);
> -
>  	list_for_each_entry(config_desc, &cscfg_mgr->config_desc_list, item) {
>  		if ((unsigned long)config_desc->event_ea->var == cfg_hash) {
> +

Spurious newline

>  			/* must ensure that config cannot be unloaded in use */
>  			err = cscfg_owner_get(config_desc->load_owner);
>  			if (err)
> @@ -790,6 +781,88 @@ int cscfg_activate_config(unsigned long cfg_hash)
>  			break;
>  		}
>  	}
> +	return err;
> +}
> +
> +static void _cscfg_deactivate_config(unsigned long cfg_hash)
> +{
> +	struct cscfg_config_desc *config_desc;
> +
> +	list_for_each_entry(config_desc, &cscfg_mgr->config_desc_list, item) {
> +		if ((unsigned long)config_desc->event_ea->var == cfg_hash) {
> +			atomic_dec(&config_desc->active_cnt);
> +			atomic_dec(&cscfg_mgr->sys_active_cnt);
> +			cscfg_owner_put(config_desc->load_owner);
> +			dev_dbg(cscfg_device(), "Deactivate config %s.\n", config_desc->name);
> +			break;
> +		}
> +	}
> +}
> +
> +/*
> + * called from configfs to set/clear the active configuration for use when
> + * using sysfs to control trace.
> + */
> +int cscfg_config_sysfs_activation(struct cscfg_config_desc *config_desc, bool activate)
> +{
> +	unsigned long cfg_hash_desc;
> +	int err = 0;
> +
> +	mutex_lock(&cscfg_mutex);
> +
> +	cfg_hash_desc = (unsigned long)config_desc->event_ea->var;
> +
> +	if (activate) {
> +		/* cannot be a current active value to activate this */
> +		if (cscfg_mgr->sysfs_active_config) {
> +			err = -EBUSY;
> +			goto exit_unlock;
> +		}
> +		err = _cscfg_activate_config(cfg_hash_desc);
> +		if (!err)
> +			cscfg_mgr->sysfs_active_config = cfg_hash_desc;
> +	} else {
> +		/* disable if matching current value */
> +		if (cscfg_mgr->sysfs_active_config == cfg_hash_desc) {
> +			_cscfg_deactivate_config(cfg_hash_desc);
> +			cscfg_mgr->sysfs_active_config = 0;
> +		} else
> +			err = -EINVAL;
> +	}
> +
> +exit_unlock:
> +	mutex_unlock(&cscfg_mutex);
> +	return err;
> +}
> +
> +/* set the sysfs preset value */
> +void cscfg_config_sysfs_preset(int preset)
> +{
> +	mutex_lock(&cscfg_mutex);
> +	cscfg_mgr->sysfs_active_preset = preset;
> +	mutex_unlock(&cscfg_mutex);
> +}
> +
> +/**
> + * cscfg_activate_config -  Mark a configuration descriptor as active.
> + *
> + * This will be seen when csdev devices are enabled in the system.
> + * Only activated configurations can be enabled on individual devices.
> + * Activation protects the configuration from alteration or removal while
> + * active.
> + *
> + * Selection by hash value - generated from the configuration name when it
> + * was loaded and added to the cs_etm/configurations file system for selection
> + * by perf.
> + *
> + * @cfg_hash: Hash value of the selected configuration name.
> + */
> +int cscfg_activate_config(unsigned long cfg_hash)
> +{
> +	int err = 0;
> +
> +	mutex_lock(&cscfg_mutex);
> +	err = _cscfg_activate_config(cfg_hash);
>  	mutex_unlock(&cscfg_mutex);
>  
>  	return err;
> @@ -805,19 +878,8 @@ EXPORT_SYMBOL_GPL(cscfg_activate_config);
>   */
>  void cscfg_deactivate_config(unsigned long cfg_hash)
>  {
> -	struct cscfg_config_desc *config_desc;
> -
>  	mutex_lock(&cscfg_mutex);
> -
> -	list_for_each_entry(config_desc, &cscfg_mgr->config_desc_list, item) {
> -		if ((unsigned long)config_desc->event_ea->var == cfg_hash) {
> -			atomic_dec(&config_desc->active_cnt);
> -			atomic_dec(&cscfg_mgr->sys_active_cnt);
> -			cscfg_owner_put(config_desc->load_owner);
> -			dev_dbg(cscfg_device(), "Deactivate config %s.\n", config_desc->name);
> -			break;
> -		}
> -	}
> +	_cscfg_deactivate_config(cfg_hash);
>  	mutex_unlock(&cscfg_mutex);
>  }
>  EXPORT_SYMBOL_GPL(cscfg_deactivate_config);
> @@ -826,7 +888,8 @@ EXPORT_SYMBOL_GPL(cscfg_deactivate_config);
>   * cscfg_csdev_enable_active_config - Enable matching active configuration for device.
>   *
>   * Enables the configuration selected by @cfg_hash if the configuration is supported
> - * on the device and has been activated.
> + * on the device and has been activated. A @cfg_hash value of 0 is used if the device
> + * is being programmed from sysfs, to select the current sysfs active config.
>   *
>   * If active and supported the CoreSight device @csdev will be programmed with the
>   * configuration, using @preset parameters.
> @@ -850,6 +913,16 @@ int cscfg_csdev_enable_active_config(struct coresight_device *csdev,
>  		return 0;
>  
>  	mutex_lock(&cscfg_csdev_mutex);
> +
> +	/* sysfs controlled coresight will call with cfg_hash == 0 */
> +	if (!cfg_hash) {
> +		if (!cscfg_mgr->sysfs_active_config)
> +			goto exit_unlock;
> +
> +		cfg_hash = cscfg_mgr->sysfs_active_config;
> +		preset = cscfg_mgr->sysfs_active_preset;
> +	}

I'm worried about this snippet.  For the time being it works but the function is
now entangled with the "if (attr->config2 ...) of etm4_parse_event_config().
That being said I spent a fair amount of time trying to find a better solution
and I can't come up with one.  The best option is probably to keep it for now. 


> +
>  	list_for_each_entry(config_csdev_item, &csdev->config_csdev_list, node) {
>  		config_desc = config_csdev_item->config_desc;
>  		if ((atomic_read(&config_desc->active_cnt)) &&
> @@ -863,6 +936,8 @@ int cscfg_csdev_enable_active_config(struct coresight_device *csdev,
>  		if (!err)
>  			csdev->active_cscfg_ctxt = (void *)config_csdev_active;
>  	}
> +
> +exit_unlock:
>  	mutex_unlock(&cscfg_csdev_mutex);
>  	return err;
>  }
> diff --git a/drivers/hwtracing/coresight/coresight-syscfg.h b/drivers/hwtracing/coresight/coresight-syscfg.h
> index 1da37874f70f..e07e1b872806 100644
> --- a/drivers/hwtracing/coresight/coresight-syscfg.h
> +++ b/drivers/hwtracing/coresight/coresight-syscfg.h
> @@ -28,6 +28,8 @@
>   * @load_order_list:    Ordered list of owners for dynamically loaded configurations.
>   * @sys_active_cnt:	Total number of active config descriptor references.
>   * @cfgfs_subsys:	configfs subsystem used to manage configurations.
> + * @sysfs_active_config:Active config hash used if CoreSight controlled from sysfs.
> + * @sysfs_active_preset:Active preset index used if CoreSight controlled from sysfs.
>   */
>  struct cscfg_manager {
>  	struct device dev;
> @@ -37,6 +39,8 @@ struct cscfg_manager {
>  	struct list_head load_order_list;
>  	atomic_t sys_active_cnt;
>  	struct configfs_subsystem cfgfs_subsys;
> +	u32 sysfs_active_config;
> +	int sysfs_active_preset;
>  };
>  
>  /* get reference to dev in cscfg_manager */
> @@ -88,7 +92,8 @@ int cscfg_preload(void *owner_handle);
>  const struct cscfg_feature_desc *cscfg_get_named_feat_desc(const char *name);
>  int cscfg_update_feat_param_val(struct cscfg_feature_desc *feat_desc,
>  				int param_idx, u64 value);
> -
> +int cscfg_config_sysfs_activation(struct cscfg_config_desc *cfg_desc, bool activate);
> +void cscfg_config_sysfs_preset(int preset);

With the above:

Reviewed-by: Mathieu Poirier <mathieu.poirier@linaro.org>

>  
>  /* syscfg manager external API */
>  int cscfg_load_config_sets(struct cscfg_config_desc **cfg_descs,
> -- 
> 2.17.1
> 

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

  reply	other threads:[~2021-05-18 19:39 UTC|newest]

Thread overview: 30+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-05-12 21:17 [RFC PATCH 0/8] coresight: syscfg: dynamic load, resource management Mike Leach
2021-05-12 21:17 ` [RFC PATCH 1/8] coresight: syscfg: Update API to allow dynamic load and unload Mike Leach
2021-05-17 17:15   ` Mathieu Poirier
2021-05-17 17:27     ` Mathieu Poirier
2021-05-19 13:28       ` Mike Leach
2021-05-12 21:17 ` [RFC PATCH 2/8] coresight: syscfg: Update load API for config loadable modules Mike Leach
2021-05-17 17:38   ` Mathieu Poirier
2021-05-12 21:17 ` [RFC PATCH 3/8] coresight: syscfg: Example CoreSight configuration loadable module Mike Leach
2021-05-18 15:52   ` Mathieu Poirier
2021-05-18 16:38     ` Mike Leach
2021-05-18 21:15       ` Mathieu Poirier
2021-05-12 21:17 ` [RFC PATCH 4/8] coresight: configfs: Allow configfs to activate configuration Mike Leach
2021-05-18 19:36   ` Mathieu Poirier [this message]
2021-05-19  9:47     ` Mike Leach
2021-05-12 21:17 ` [RFC PATCH 5/8] coresight: syscfg: Add API to check and validate device resources Mike Leach
2021-05-21 17:56   ` Mathieu Poirier
2021-07-08 16:30     ` Mike Leach
2021-05-12 21:17 ` [RFC PATCH 6/8] coresight: etm4x: syscfg: Add resource management to etm4x Mike Leach
2021-05-26 17:51   ` Mathieu Poirier
2021-05-27 17:41   ` Mathieu Poirier
2021-05-28 16:17   ` Mathieu Poirier
2021-07-09  9:32     ` Mike Leach
2021-05-12 21:17 ` [RFC PATCH 7/8] coresight: etm4x: Update perf event resource handling Mike Leach
2021-05-12 21:17 ` [RFC PATCH 8/8] coresight: etm4x: Update configuration example Mike Leach
2021-05-13 15:56 ` [RFC PATCH 0/8] coresight: syscfg: dynamic load, resource management Mathieu Poirier
2021-05-13 16:53   ` Mike Leach
2021-05-14  1:35     ` Leo Yan
2021-05-18 18:31 ` Suzuki K Poulose
2021-05-19  9:43   ` Mike Leach
2021-05-19 15:37     ` Mathieu Poirier

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=20210518193639.GC776252@xps15 \
    --to=mathieu.poirier@linaro.org \
    --cc=coresight@lists.linaro.org \
    --cc=leo.yan@linaro.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=mike.leach@linaro.org \
    --cc=suzuki.poulose@arm.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