From: Praveen Talari <praveen.talari@oss.qualcomm.com>
To: Mukesh Savaliya <mukesh.savaliya@oss.qualcomm.com>,
Frank.Li@kernel.org, viken.dadhaniya@oss.qualcomm.com,
andi.shyti@kernel.org, dmitry.baryshkov@oss.qualcomm.com,
zhengxingda@iscas.ac.cn, kees@kernel.org,
quic_jseerapu@quicinc.com, linux-arm-msm@vger.kernel.org,
dmaengine@vger.kernel.org, linux-kernel@vger.kernel.org,
linux-i2c@vger.kernel.org
Cc: bjorn.andersson@oss.qualcomm.com, konrad.dybcio@oss.qualcomm.com,
Aniket Randive <aniketrandive@oss.qualcomm.com>
Subject: Re: [PATCH v7 1/2] i2c: qcom-geni: Handle runtime PM disabled state during early resume
Date: Fri, 24 Jul 2026 13:59:47 +0530 [thread overview]
Message-ID: <64bed353-9597-42b5-8fd3-a86b35781ccc@oss.qualcomm.com> (raw)
In-Reply-To: <510c0d23-f2ef-4f1b-aaae-a7f3c90c24c9@oss.qualcomm.com>
Hi Mukesh
On 24-07-2026 12:05, Mukesh Savaliya wrote:
>
>
> On 7/24/2026 10:12 AM, Praveen Talari wrote:
>> Hi
>>
>> On 23-07-2026 17:14, Mukesh Savaliya wrote:
>>>
>>>
>>> On 7/23/2026 4:24 PM, Praveen Talari wrote:
>>>> Hi mukesh
>>>>
>>>> On 23-07-2026 15:47, Mukesh Savaliya wrote:
>>>>> Hi Praveen,
>>>>>
>>>>> On 7/23/2026 3:32 PM, Praveen Talari wrote:
>>>>>> Hi Mukesh
>>>>>>
>>>>> [...]
>>>>>
>>>>>>> diff --git a/drivers/i2c/busses/i2c-qcom-geni.c b/drivers/i2c/
>>>>>>> busses/i2c-qcom-geni.c
>>>>>>> index 96dbf04138be..4bc00922cd97 100644
>>>>>>> --- a/drivers/i2c/busses/i2c-qcom-geni.c
>>>>>>> +++ b/drivers/i2c/busses/i2c-qcom-geni.c
>>>>>>> @@ -917,6 +917,10 @@ static int geni_i2c_xfer(struct i2c_adapter
>>>>>>> *adap,
>>>>>>> gi2c->err = 0;
>>>>>>> reinit_completion(&gi2c->done);
>>>>>>> ret = pm_runtime_get_sync(gi2c->se.dev);
>>>>>>> + if (ret == -EACCES) {
>>>>>>> + dev_warn(gi2c->se.dev, "Runtime PM is disabled:%d\n",
>>>>>>> ret);
>>>>>>> + ret = 0;
>>>>>>
>>>>>> Here it is clear that pm_runtime_get_sync() is returning -EACCES
>>>>>> from the runtime PM framework,
>>>>>>
>>>>>> which indicates that the request was rejected before the runtime
>>>>>> resume path could enable any resources.
>>>>>>
>>>>>> From the rpm_resume() implementation:
>>>>>>
>>>>>> static int rpm_resume(struct device *dev, int rpmflags)
>>>>>> __releases(&dev- >power.lock) __acquires(&dev->power.lock) {
>>>>>> [...] repeat: if (dev- >power.runtime_error) { retval = -EINVAL;
>>>>>> } else if (dev- >power.disable_depth > 0) { [...] else retval =
>>>>>> - EACCES; } if (retval) goto out; [...] out: if (parent && !dev-
>>>>>> >power.irq_safe) { spin_unlock_irq(&dev->power.lock);
>>>>>> pm_runtime_put(parent); spin_lock_irq(&dev->power.lock); }
>>>>>> trace_rpm_return_int(dev, _THIS_IP_, retval); return retval; }
>>>>>>
>>>>>> The -EACCES error is returned when runtime PM is disabled
>>>>>> (disable_depth > 0),
>>>>>>
>>>>>> causing the function to exit without invoking the device's
>>>>>> runtime resume callback.
>>>>>>
>>>>>> As a result, no resource enablement is performed by the PM
>>>>>> framework.
>>>>>>
>>>>>>
>>>>>> In your change, the error is effectively converted to ret = 0 and
>>>>>> execution continues.
>>>>>>
>>>>>> How can we guarantee that the required resources have been
>>>>>> enabled in this scenario?
>>>>>>
>>>>>> More importantly, where are those resources expected to be
>>>>>> enabled if the runtime PM resume path was never executed?
>>>>>>
>>>>>
>>>>> This was answered in V6 already on 7/3 exactly at same place.
>>>>> Pasting below.
>>>>>
>>>>> ==
>>>>> > Why we are checking specific error code here? Why can't we use
>>>>> the below error check directly?
>>>>> > if get sync itself is failed with pm runtime disabled then why
>>>>> we are going ahead by making ret = 0 here? How you will make sure
>>>>> resources are enabled?
>>>>>
>>>>> This reason is also mentioned in the commit log. we surely get -
>>>>> EACCESS as runtime PM is disabled during no_irq resume phase. We
>>>>> still need to serve the transfer, hence we need to override it.
>>>>
>>>> We should not get it and not go further since you are already
>>>> enabled in system_resume_no_irq().
>>>>
>>>> I just need to understand why we need to proceed when we
>>>> get -EACCESS as runtime PM .
>>>>
>>>
>>> ret = 0 was added because during early system resume, -EACCES from
>>> pm_runtime_get_sync() indicates runtime PM is disabled, not that the
>>> controller is unusable; treating it as an error would incorrectly
>>> reject valid I2C transfers occurring during resume.
>>
>>
>> What is the purpose of enabling runtime PM during system resume? It
>> is not clear how this helps, given that -EACCES can still be returned.
>>
>
> I think you didn't get noirq_resume() change. if you review code, we
> do force_resume(), but that doesn't invoke transfer time
> runtime_resume() via pm_*_get_sync() call because device has runtime
> PM disabled.
>
> Hence we need to call pm_runtime_enable(). In my testing, have seen
> that driver returning with -EACCESS if not overridden with ret = 0.
> That's the whole point. We need force resume and transfer to serve
> early resume transfer. Usecase demands this transfer without failure.
I have gone through noirq_resume() change.
force_resume will be executed only if force_suspend executed otherwise
it won't execute.
IMO, If PM runtime enabled for device, it won't return -EACCESS.
What is the purpose of enabling runtime PM in the system resume
callback? We still appear to encounter -EACCES despite runtime PM being
enabled there.
>
>>
>>>
>>> Other than early PM time, we are not going to get -EACESS. So i
>>> don't see any case where this will be a problem.
>>>>>
>>>>> Review geni_i2c_resume_noirq() to know what all we do to enable
>>>>> resources. That's guaranteed and tested with system suspend/resume
>>>>> test back to back and PCIe could do i2c transfer successfully.
>>>>> ==
>>>>>>
>>>>>> Thanks,
>>>>>>
>>>>>> Praveen Talari
>>>>>>
>>>>> Do not keep this thanks/regards here. only leave the comments.
>>>>>
>>>>>>> + }
>>>>> [...]
>>>
>
next prev parent reply other threads:[~2026-07-24 8:29 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-07-09 13:46 [PATCH v7 0/2] i2c: i2c-qcom-geni: serve transfers during early resume Mukesh Kumar Savaliya
2026-07-09 13:46 ` [PATCH v7 1/2] i2c: qcom-geni: Handle runtime PM disabled state " Mukesh Kumar Savaliya
[not found] ` <9cf5b5ab-c418-4b0d-8b2f-b888a64db0f0@oss.qualcomm.com>
[not found] ` <933d864d-f0c2-4727-a01d-f564eb854d23@oss.qualcomm.com>
[not found] ` <4133bbcb-22e7-41e0-b9f4-affd63df0e38@oss.qualcomm.com>
[not found] ` <86828cb8-0e96-48ce-aff4-0f7e59438ad7@oss.qualcomm.com>
2026-07-24 4:42 ` Praveen Talari
2026-07-24 6:35 ` Mukesh Savaliya
2026-07-24 8:29 ` Praveen Talari [this message]
2026-07-29 20:20 ` Andi Shyti
2026-07-09 13:46 ` [PATCH v7 2/2] dmaengine: qcom-gpi: Keep GPI interrupt active during system resume Mukesh Kumar Savaliya
2026-07-29 20:21 ` Andi Shyti
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=64bed353-9597-42b5-8fd3-a86b35781ccc@oss.qualcomm.com \
--to=praveen.talari@oss.qualcomm.com \
--cc=Frank.Li@kernel.org \
--cc=andi.shyti@kernel.org \
--cc=aniketrandive@oss.qualcomm.com \
--cc=bjorn.andersson@oss.qualcomm.com \
--cc=dmaengine@vger.kernel.org \
--cc=dmitry.baryshkov@oss.qualcomm.com \
--cc=kees@kernel.org \
--cc=konrad.dybcio@oss.qualcomm.com \
--cc=linux-arm-msm@vger.kernel.org \
--cc=linux-i2c@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mukesh.savaliya@oss.qualcomm.com \
--cc=quic_jseerapu@quicinc.com \
--cc=viken.dadhaniya@oss.qualcomm.com \
--cc=zhengxingda@iscas.ac.cn \
/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