From: Leo Yan <leo.yan@arm.com>
To: James Clark <james.clark@linaro.org>
Cc: Suzuki K Poulose <suzuki.poulose@arm.com>,
Mike Leach <mike.leach@linaro.org>,
Alexander Shishkin <alexander.shishkin@linux.intel.com>,
Maxime Coquelin <mcoquelin.stm32@gmail.com>,
Alexandre Torgue <alexandre.torgue@foss.st.com>,
coresight@lists.linaro.org, linux-arm-kernel@lists.infradead.org,
linux-kernel@vger.kernel.org,
linux-stm32@st-md-mailman.stormreply.com
Subject: Re: [PATCH v2 4/8] coresight: Add claim tag warnings and debug messages
Date: Wed, 19 Mar 2025 08:27:15 +0000 [thread overview]
Message-ID: <20250319082715.GD2860028@e132581.arm.com> (raw)
In-Reply-To: <20250318-james-coresight-claim-tags-v2-4-e9c8a9cde84e@linaro.org>
On Tue, Mar 18, 2025 at 04:21:58PM +0000, James Clark wrote:
> Add a dev_dbg() message so that external debugger conflicts are more
> visible. There are multiple reasons for -EBUSY so a message for this
> particular one could be helpful. Add errors for and enumerate all the
> other cases that are impossible.
>
> Signed-off-by: James Clark <james.clark@linaro.org>
Reviewed-by: Leo Yan <leo.yan@arm.com>
> ---
> drivers/hwtracing/coresight/coresight-core.c | 51 +++++++++++++++++-----------
> drivers/hwtracing/coresight/coresight-priv.h | 5 ++-
> 2 files changed, 36 insertions(+), 20 deletions(-)
>
> diff --git a/drivers/hwtracing/coresight/coresight-core.c b/drivers/hwtracing/coresight/coresight-core.c
> index e39043a9551f..5f08845faf0d 100644
> --- a/drivers/hwtracing/coresight/coresight-core.c
> +++ b/drivers/hwtracing/coresight/coresight-core.c
> @@ -135,16 +135,6 @@ static inline u32 coresight_read_claim_tags(struct coresight_device *csdev)
> csdev_access_relaxed_read32(&csdev->access, CORESIGHT_CLAIMCLR));
> }
>
> -static inline bool coresight_is_claimed_self_hosted(struct coresight_device *csdev)
> -{
> - return coresight_read_claim_tags(csdev) == CORESIGHT_CLAIM_SELF_HOSTED;
> -}
> -
> -static inline bool coresight_is_claimed_any(struct coresight_device *csdev)
> -{
> - return coresight_read_claim_tags(csdev) != 0;
> -}
> -
> static inline void coresight_set_self_claim_tag(struct coresight_device *csdev)
> {
> csdev_access_relaxed_write32(&csdev->access, CORESIGHT_CLAIM_SELF_HOSTED,
> @@ -180,18 +170,41 @@ EXPORT_SYMBOL_GPL(coresight_clear_self_claim_tag_unlocked);
> */
> int coresight_claim_device_unlocked(struct coresight_device *csdev)
> {
> + int tag;
> + struct csdev_access *csa;
> +
> if (WARN_ON(!csdev))
> return -EINVAL;
>
> - if (coresight_is_claimed_any(csdev))
> + csa = &csdev->access;
> + tag = coresight_read_claim_tags(csdev);
> +
> + switch (tag) {
> + case CORESIGHT_CLAIM_FREE:
> + coresight_set_self_claim_tag(csdev);
> + if (coresight_read_claim_tags(csdev) == CORESIGHT_CLAIM_SELF_HOSTED)
> + return 0;
> +
> + /* There was a race setting the tag, clean up and fail */
> + coresight_clear_self_claim_tag_unlocked(csa);
> + dev_dbg(&csdev->dev, "Busy: Couldn't set self claim tag");
> return -EBUSY;
>
> - coresight_set_self_claim_tag(csdev);
> - if (coresight_is_claimed_self_hosted(csdev))
> - return 0;
> - /* There was a race setting the tag, clean up and fail */
> - coresight_clear_self_claim_tag_unlocked(&csdev->access);
> - return -EBUSY;
> + case CORESIGHT_CLAIM_EXTERNAL:
> + /* External debug is an expected state, so log and report BUSY */
> + dev_dbg(&csdev->dev, "Busy: Claimed by external debugger");
> + return -EBUSY;
> +
> + default:
> + case CORESIGHT_CLAIM_SELF_HOSTED:
> + case CORESIGHT_CLAIM_INVALID:
> + /*
> + * Warn here because we clear a lingering self hosted tag
> + * on probe, so other tag combinations are impossible.
> + */
> + dev_err_once(&csdev->dev, "Invalid claim tag state: %x", tag);
> + return -EBUSY;
> + }
> }
> EXPORT_SYMBOL_GPL(coresight_claim_device_unlocked);
>
> @@ -220,7 +233,7 @@ void coresight_disclaim_device_unlocked(struct coresight_device *csdev)
> if (WARN_ON(!csdev))
> return;
>
> - if (coresight_is_claimed_self_hosted(csdev))
> + if (coresight_read_claim_tags(csdev) == CORESIGHT_CLAIM_SELF_HOSTED)
> coresight_clear_self_claim_tag_unlocked(&csdev->access);
> else
> /*
> @@ -228,7 +241,7 @@ void coresight_disclaim_device_unlocked(struct coresight_device *csdev)
> * and has manipulated it. Or something else has seriously
> * gone wrong in our driver.
> */
> - WARN_ON_ONCE(1);
> + dev_WARN_ONCE(&csdev->dev, 1, "External agent took claim tag");
> }
> EXPORT_SYMBOL_GPL(coresight_disclaim_device_unlocked);
>
> diff --git a/drivers/hwtracing/coresight/coresight-priv.h b/drivers/hwtracing/coresight/coresight-priv.h
> index 38bb4e8b50ef..6e8cf55aee0a 100644
> --- a/drivers/hwtracing/coresight/coresight-priv.h
> +++ b/drivers/hwtracing/coresight/coresight-priv.h
> @@ -36,7 +36,10 @@ extern const struct device_type coresight_dev_type[];
> * See PSCI - ARM DEN 0022D, Section: 6.8.1 Debug and Trace save and restore.
> */
> #define CORESIGHT_CLAIM_MASK GENMASK(1, 0)
> -#define CORESIGHT_CLAIM_SELF_HOSTED BIT(1)
> +#define CORESIGHT_CLAIM_FREE 0
> +#define CORESIGHT_CLAIM_EXTERNAL 1
> +#define CORESIGHT_CLAIM_SELF_HOSTED 2
> +#define CORESIGHT_CLAIM_INVALID 3
>
> #define TIMEOUT_US 100
> #define BMVAL(val, lsb, msb) ((val & GENMASK(msb, lsb)) >> lsb)
>
> --
> 2.34.1
>
next prev parent reply other threads:[~2025-03-19 8:27 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-03-18 16:21 [PATCH v2 0/8] coresight: Clear self hosted claim tag on probe James Clark
2025-03-18 16:21 ` [PATCH v2 1/8] coresight: Rename coresight_{set,clear}_claim_tags() James Clark
2025-03-18 16:21 ` [PATCH v2 2/8] coresight: Convert tag clear function to take a struct cs_access James Clark
2025-03-19 8:24 ` Leo Yan
2025-03-19 12:00 ` Suzuki K Poulose
2025-03-19 12:30 ` James Clark
2025-03-18 16:21 ` [PATCH v2 3/8] coresight: Only check bottom two claim bits James Clark
2025-03-18 16:21 ` [PATCH v2 4/8] coresight: Add claim tag warnings and debug messages James Clark
2025-03-19 8:27 ` Leo Yan [this message]
2025-03-18 16:21 ` [PATCH v2 5/8] coresight: etm3x: Convert raw base pointer to struct coresight access James Clark
2025-03-19 8:30 ` Leo Yan
2025-03-18 16:22 ` [PATCH v2 6/8] coresight: Clear self hosted claim tag on probe James Clark
2025-03-19 9:13 ` Leo Yan
2025-03-18 16:22 ` [PATCH v2 7/8] coresight: Remove inlines from static function definitions James Clark
2025-03-19 8:36 ` Leo Yan
2025-03-18 16:22 ` [PATCH v2 8/8] coresight: Remove extern from function declarations James Clark
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=20250319082715.GD2860028@e132581.arm.com \
--to=leo.yan@arm.com \
--cc=alexander.shishkin@linux.intel.com \
--cc=alexandre.torgue@foss.st.com \
--cc=coresight@lists.linaro.org \
--cc=james.clark@linaro.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-stm32@st-md-mailman.stormreply.com \
--cc=mcoquelin.stm32@gmail.com \
--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
all inboxes | Powered by JetHome®