Linux ARM-MSM sub-architecture
 help / color / mirror / Atom feed
From: Jonathan Cameron <Jonathan.Cameron@huawei.com>
To: Songwei Chai <quic_songchai@quicinc.com>
Cc: Suzuki K Poulose <suzuki.poulose@arm.com>,
	Mike Leach <mike.leach@linaro.org>,
	James Clark <james.clark@arm.com>,
	"Alexander Shishkin" <alexander.shishkin@linux.intel.com>,
	Andy Gross <agross@kernel.org>,
	Bjorn Andersson <andersson@kernel.org>,
	Rob Herring <robh+dt@kernel.org>,
	Krzysztof Kozlowski <krzk+dt@kernel.org>,
	"Conor Dooley" <conor+dt@kernel.org>,
	<linux-kernel@vger.kernel.org>, <coresight@lists.linaro.org>,
	<linux-arm-kernel@lists.infradead.org>,
	<linux-arm-msm@vger.kernel.org>, <devicetree@vger.kernel.org>
Subject: Re: [PATCH v5 4/7] coresight-tgu: Add TGU decode support
Date: Thu, 29 May 2025 12:32:04 +0100	[thread overview]
Message-ID: <20250529123204.00005b78@huawei.com> (raw)
In-Reply-To: <20250529081949.26493-5-quic_songchai@quicinc.com>

On Thu, 29 May 2025 16:19:45 +0800
Songwei Chai <quic_songchai@quicinc.com> wrote:

> Decoding is when all the potential pieces for creating a trigger
> are brought together for a given step. Example - there may be a
> counter keeping track of some occurrences and a priority-group that
> is being used to detect a pattern on the sense inputs. These 2
> inputs to condition_decode must be programmed, for a given step,
> to establish the condition for the trigger, or movement to another
> steps.
> 
> Signed-off-by: Songwei Chai <quic_songchai@quicinc.com>

> diff --git a/drivers/hwtracing/coresight/coresight-tgu.c b/drivers/hwtracing/coresight/coresight-tgu.c
> index 6dbfd4c604b1..8dbe8ab30174 100644
> --- a/drivers/hwtracing/coresight/coresight-tgu.c
> +++ b/drivers/hwtracing/coresight/coresight-tgu.c
> @@ -21,13 +21,35 @@ static int calculate_array_location(struct tgu_drvdata *drvdata,

> +
>  static int tgu_enable(struct coresight_device *csdev, enum cs_mode mode,
>  		      void *data)
>  {
> +	int ret = 0;
From what can be seen here, looks like ret is always set, so no need to init.
>  	struct tgu_drvdata *drvdata = dev_get_drvdata(csdev->dev.parent);
>  
>  	spin_lock(&drvdata->spinlock);
> @@ -150,11 +264,15 @@ static int tgu_enable(struct coresight_device *csdev, enum cs_mode mode,
>  		spin_unlock(&drvdata->spinlock);
>  		return -EBUSY;
>  	}
> -	tgu_write_all_hw_regs(drvdata);
> +	ret = tgu_write_all_hw_regs(drvdata);
> +
> +	if (ret == -EINVAL)
> +		goto exit;
>  	drvdata->enable = true;
>  
> +exit:
>  	spin_unlock(&drvdata->spinlock);
> -	return 0;
> +	return ret;
>  }

> diff --git a/drivers/hwtracing/coresight/coresight-tgu.h b/drivers/hwtracing/coresight/coresight-tgu.h
> index f07ead505365..691da393ffa3 100644
> --- a/drivers/hwtracing/coresight/coresight-tgu.h
> +++ b/drivers/hwtracing/coresight/coresight-tgu.h

>  enum operation_index {
>  	TGU_PRIORITY0,
>  	TGU_PRIORITY1,
>  	TGU_PRIORITY2,
> -	TGU_PRIORITY3
> +	TGU_PRIORITY3,

And here is why the previous patch should definitely have had the ,

> +	TGU_CONDITION_DECODE
>  
>  };

> 
> 


  reply	other threads:[~2025-05-29 11:32 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-05-29  8:19 [PATCH v5 0/7] Provides support for Trigger Generation Unit Songwei Chai
2025-05-29  8:19 ` [PATCH v5 1/7] dt-bindings: arm: Add support for Coresight TGU trace Songwei Chai
2025-06-05 16:27   ` Rob Herring (Arm)
2025-05-29  8:19 ` [PATCH v5 2/7] coresight: Add coresight TGU driver Songwei Chai
2025-05-29 11:26   ` Jonathan Cameron
2025-05-29  8:19 ` [PATCH v5 3/7] coresight-tgu: Add signal priority support Songwei Chai
2025-05-29 11:29   ` Jonathan Cameron
2025-06-06  2:52     ` songchai
2025-05-29  8:19 ` [PATCH v5 4/7] coresight-tgu: Add TGU decode support Songwei Chai
2025-05-29 11:32   ` Jonathan Cameron [this message]
2025-06-06  2:56     ` songchai
2025-05-29  8:19 ` [PATCH v5 5/7] coresight-tgu: add support to configure next action Songwei Chai
2025-05-29  8:19 ` [PATCH v5 6/7] coresight-tgu: add timer/counter functionality for TGU Songwei Chai
2025-05-29  8:19 ` [PATCH v5 7/7] coresight-tgu: add reset node to initialize Songwei Chai
2025-06-27  6:28 ` [PATCH v5 0/7] Provides support for Trigger Generation Unit Songwei Chai
  -- strict thread matches above, loose matches on Subject: below --
2025-04-23  6:34 Songwei Chai
2025-04-23  6:34 ` [PATCH v5 4/7] coresight-tgu: Add TGU decode support Songwei Chai

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=20250529123204.00005b78@huawei.com \
    --to=jonathan.cameron@huawei.com \
    --cc=agross@kernel.org \
    --cc=alexander.shishkin@linux.intel.com \
    --cc=andersson@kernel.org \
    --cc=conor+dt@kernel.org \
    --cc=coresight@lists.linaro.org \
    --cc=devicetree@vger.kernel.org \
    --cc=james.clark@arm.com \
    --cc=krzk+dt@kernel.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-arm-msm@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mike.leach@linaro.org \
    --cc=quic_songchai@quicinc.com \
    --cc=robh+dt@kernel.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