From: James Clark <james.clark@arm.com>
To: Jinlong Mao <quic_jinlmao@quicinc.com>,
Suzuki K Poulose <suzuki.poulose@arm.com>,
coresight@lists.linaro.org, mike.leach@linaro.org
Cc: Mathieu Poirier <mathieu.poirier@linaro.org>,
Leo Yan <leo.yan@linaro.org>,
Alexander Shishkin <alexander.shishkin@linux.intel.com>,
Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
linux-arm-kernel@lists.infradead.org,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH v2 2/3] coresight: cti: Add PM runtime call in enable_store
Date: Tue, 10 Jan 2023 11:08:50 +0000 [thread overview]
Message-ID: <6f89794a-ce14-439a-ce10-55ed175a10fe@arm.com> (raw)
In-Reply-To: <487a882b-8c88-095a-b6b2-d76fddcaecc6@quicinc.com>
On 10/01/2023 05:56, Jinlong Mao wrote:
>
> On 1/10/2023 12:47 AM, Suzuki K Poulose wrote:
>> On 06/01/2023 15:23, James Clark wrote:
>>> From: Mao Jinlong <quic_jinlmao@quicinc.com>
>>>
>>> In commit 6746eae4bbad ("coresight: cti: Fix hang in cti_disable_hw()")
>>> PM runtime calls are removed from cti_enable_hw/cti_disable_hw. When
>>> enabling CTI by writing enable sysfs node, clock for accessing CTI
>>> register won't be enabled. Device will crash due to register access
>>> issue. Add PM runtime call in enable_store to fix this issue.
>>>
>>> Fixes: 6746eae4bbad ("coresight: cti: Fix hang in cti_disable_hw()")
>>> Signed-off-by: Mao Jinlong <quic_jinlmao@quicinc.com>
>>> [Change to only call pm_runtime_put if a disable happened]
>>> Signed-off-by: James Clark <james.clark@arm.com>
>>> ---
>>> drivers/hwtracing/coresight/coresight-cti-sysfs.c | 13 +++++++++++--
>>> 1 file changed, 11 insertions(+), 2 deletions(-)
>>>
>>> diff --git a/drivers/hwtracing/coresight/coresight-cti-sysfs.c
>>> b/drivers/hwtracing/coresight/coresight-cti-sysfs.c
>>> index 6d59c815ecf5..71e7a8266bb3 100644
>>> --- a/drivers/hwtracing/coresight/coresight-cti-sysfs.c
>>> +++ b/drivers/hwtracing/coresight/coresight-cti-sysfs.c
>>> @@ -108,10 +108,19 @@ static ssize_t enable_store(struct device *dev,
>>> if (ret)
>>> return ret;
>>> - if (val)
>>> + if (val) {
>>> + ret = pm_runtime_resume_and_get(dev->parent);
>>> + if (ret)
>>> + return ret;
>>> ret = cti_enable(drvdata->csdev);
>>> - else
>>> + if (ret)
>>> + pm_runtime_put(dev->parent);
>>> + } else {
>>> ret = cti_disable(drvdata->csdev);
>>> + if (!ret)
>>> + pm_runtime_put(dev->parent);
>>> + }
>>> +
>>> if (ret)
>>> return ret;
>>> return size;
>>
>> Looks good to me.
>>
>> @Mao Jinolong,
>>
>> Are you able to test the patches 1 & 2 and confirm they solve your
>> issue ?
>
> Hi Suzuki,
>
> Tested from my side. Patch 1 & 2 can solve the issue when enable CTI by
> writing 1 to enable sysfs node.
Thanks, I added your tested-by tag on patches 1 + 2.
next prev parent reply other threads:[~2023-01-10 11:11 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-01-06 15:23 [PATCH v2 0/3] " James Clark
2023-01-06 15:23 ` [PATCH v2 1/3] coresight: cti: Prevent negative values of enable count James Clark
2023-01-06 16:41 ` Suzuki K Poulose
2023-01-06 15:23 ` [PATCH v2 2/3] coresight: cti: Add PM runtime call in enable_store James Clark
2023-01-09 16:47 ` Suzuki K Poulose
2023-01-10 5:56 ` Jinlong Mao
2023-01-10 11:08 ` James Clark [this message]
2023-01-06 15:23 ` [PATCH v2 3/3] coresight: cti: Remove atomic type from enable_req_count 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=6f89794a-ce14-439a-ce10-55ed175a10fe@arm.com \
--to=james.clark@arm.com \
--cc=alexander.shishkin@linux.intel.com \
--cc=coresight@lists.linaro.org \
--cc=gregkh@linuxfoundation.org \
--cc=leo.yan@linaro.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mathieu.poirier@linaro.org \
--cc=mike.leach@linaro.org \
--cc=quic_jinlmao@quicinc.com \
--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®