mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
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: Thu, 23 Jul 2026 16:24:26 +0530	[thread overview]
Message-ID: <4133bbcb-22e7-41e0-b9f4-affd63df0e38@oss.qualcomm.com> (raw)
In-Reply-To: <933d864d-f0c2-4727-a01d-f564eb854d23@oss.qualcomm.com>

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 .

>
> 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.
>
>>> +    }
> [...]

  reply	other threads:[~2026-07-23 10:54 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-07-09 13:46 [PATCH v7 0/2] i2c: i2c-qcom-geni: serve transfers " 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>
2026-07-23 10:17     ` Mukesh Savaliya
2026-07-23 10:54       ` Praveen Talari [this message]
2026-07-23 11:44         ` Mukesh Savaliya
2026-07-24  4:42           ` Praveen Talari
2026-07-24  6:35             ` Mukesh Savaliya
2026-07-24  8:29               ` Praveen Talari
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=4133bbcb-22e7-41e0-b9f4-affd63df0e38@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

all inboxes | Powered by JetHome®