All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH net-next] net: ipa: use dev PM wakeirq handling
@ 2023-01-27 20:27 Caleb Connolly
  2023-01-28 13:47 ` Alex Elder
  2023-01-31 14:30 ` patchwork-bot+netdevbpf
  0 siblings, 2 replies; 5+ messages in thread
From: Caleb Connolly @ 2023-01-27 20:27 UTC (permalink / raw)
  To: Alex Elder, David S. Miller, Eric Dumazet, Jakub Kicinski, Paolo Abeni
  Cc: elder, netdev, linux-arm-msm, phone-devel

Replace the enable_irq_wake() call with one to dev_pm_set_wake_irq()
instead. This will let the dev PM framework automatically manage the
the wakeup capability of the ipa IRQ and ensure that userspace requests
to enable/disable wakeup for the IPA via sysfs are respected.

Signed-off-by: Caleb Connolly <caleb.connolly@linaro.org>
---
 drivers/net/ipa/ipa_interrupt.c | 10 ++++------
 1 file changed, 4 insertions(+), 6 deletions(-)

diff --git a/drivers/net/ipa/ipa_interrupt.c b/drivers/net/ipa/ipa_interrupt.c
index c19cd27ac852..9a1153e80a3a 100644
--- a/drivers/net/ipa/ipa_interrupt.c
+++ b/drivers/net/ipa/ipa_interrupt.c
@@ -22,6 +22,7 @@
 #include <linux/types.h>
 #include <linux/interrupt.h>
 #include <linux/pm_runtime.h>
+#include <linux/pm_wakeirq.h>
 
 #include "ipa.h"
 #include "ipa_reg.h"
@@ -269,9 +270,9 @@ struct ipa_interrupt *ipa_interrupt_config(struct ipa *ipa)
 		goto err_kfree;
 	}
 
-	ret = enable_irq_wake(irq);
+	ret = dev_pm_set_wake_irq(dev, irq);
 	if (ret) {
-		dev_err(dev, "error %d enabling wakeup for \"ipa\" IRQ\n", ret);
+		dev_err(dev, "error %d registering \"ipa\" IRQ as wakeirq\n", ret);
 		goto err_free_irq;
 	}
 
@@ -289,11 +290,8 @@ struct ipa_interrupt *ipa_interrupt_config(struct ipa *ipa)
 void ipa_interrupt_deconfig(struct ipa_interrupt *interrupt)
 {
 	struct device *dev = &interrupt->ipa->pdev->dev;
-	int ret;
 
-	ret = disable_irq_wake(interrupt->irq);
-	if (ret)
-		dev_err(dev, "error %d disabling \"ipa\" IRQ wakeup\n", ret);
+	dev_pm_clear_wake_irq(dev);
 	free_irq(interrupt->irq, interrupt);
 	kfree(interrupt);
 }
-- 
2.39.0


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH net-next] net: ipa: use dev PM wakeirq handling
  2023-01-27 20:27 [PATCH net-next] net: ipa: use dev PM wakeirq handling Caleb Connolly
@ 2023-01-28 13:47 ` Alex Elder
  2023-01-31 12:40   ` Caleb Connolly
  2023-01-31 14:30 ` patchwork-bot+netdevbpf
  1 sibling, 1 reply; 5+ messages in thread
From: Alex Elder @ 2023-01-28 13:47 UTC (permalink / raw)
  To: Caleb Connolly, David S. Miller, Eric Dumazet, Jakub Kicinski,
	Paolo Abeni
  Cc: elder, netdev, linux-arm-msm, phone-devel

On 1/27/23 2:27 PM, Caleb Connolly wrote:
> Replace the enable_irq_wake() call with one to dev_pm_set_wake_irq()
> instead. This will let the dev PM framework automatically manage the
> the wakeup capability of the ipa IRQ and ensure that userspace requests
> to enable/disable wakeup for the IPA via sysfs are respected.
> 
> Signed-off-by: Caleb Connolly <caleb.connolly@linaro.org>

Looks OK to me.  Can you say something about how you
tested this, and what the result was?  Thanks.

					-Alex

> ---
>   drivers/net/ipa/ipa_interrupt.c | 10 ++++------
>   1 file changed, 4 insertions(+), 6 deletions(-)
> 
> diff --git a/drivers/net/ipa/ipa_interrupt.c b/drivers/net/ipa/ipa_interrupt.c
> index c19cd27ac852..9a1153e80a3a 100644
> --- a/drivers/net/ipa/ipa_interrupt.c
> +++ b/drivers/net/ipa/ipa_interrupt.c
> @@ -22,6 +22,7 @@
>   #include <linux/types.h>
>   #include <linux/interrupt.h>
>   #include <linux/pm_runtime.h>
> +#include <linux/pm_wakeirq.h>
>   
>   #include "ipa.h"
>   #include "ipa_reg.h"
> @@ -269,9 +270,9 @@ struct ipa_interrupt *ipa_interrupt_config(struct ipa *ipa)
>   		goto err_kfree;
>   	}
>   
> -	ret = enable_irq_wake(irq);
> +	ret = dev_pm_set_wake_irq(dev, irq);
>   	if (ret) {
> -		dev_err(dev, "error %d enabling wakeup for \"ipa\" IRQ\n", ret);
> +		dev_err(dev, "error %d registering \"ipa\" IRQ as wakeirq\n", ret);
>   		goto err_free_irq;
>   	}
>   
> @@ -289,11 +290,8 @@ struct ipa_interrupt *ipa_interrupt_config(struct ipa *ipa)
>   void ipa_interrupt_deconfig(struct ipa_interrupt *interrupt)
>   {
>   	struct device *dev = &interrupt->ipa->pdev->dev;
> -	int ret;
>   
> -	ret = disable_irq_wake(interrupt->irq);
> -	if (ret)
> -		dev_err(dev, "error %d disabling \"ipa\" IRQ wakeup\n", ret);
> +	dev_pm_clear_wake_irq(dev);
>   	free_irq(interrupt->irq, interrupt);
>   	kfree(interrupt);
>   }


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH net-next] net: ipa: use dev PM wakeirq handling
  2023-01-28 13:47 ` Alex Elder
@ 2023-01-31 12:40   ` Caleb Connolly
  2023-01-31 13:04     ` Alex Elder
  0 siblings, 1 reply; 5+ messages in thread
From: Caleb Connolly @ 2023-01-31 12:40 UTC (permalink / raw)
  To: Alex Elder, David S. Miller, Eric Dumazet, Jakub Kicinski, Paolo Abeni
  Cc: elder, netdev, linux-arm-msm, phone-devel



On 1/28/23 13:47, Alex Elder wrote:
> On 1/27/23 2:27 PM, Caleb Connolly wrote:
>> Replace the enable_irq_wake() call with one to dev_pm_set_wake_irq()
>> instead. This will let the dev PM framework automatically manage the
>> the wakeup capability of the ipa IRQ and ensure that userspace requests
>> to enable/disable wakeup for the IPA via sysfs are respected.
>>
>> Signed-off-by: Caleb Connolly <caleb.connolly@linaro.org>
> 
> Looks OK to me.  Can you say something about how you
> tested this, and what the result was?  Thanks.

Ah yeah. This was tested on the SDM845 (IPA 3.5.1) based SHIFT6mq in the 
UK with an EE SIM card.

All network connections were disabled except for mobile data which was 
configured using ModemManager. Then I set up a basic TCP server using 
netcat on a public IP address and connected to it from the device.

It is then possible to validate that the wakeirq fires and the interrupt 
is handled correctly by putting the device into s2idle sleep (echo mem > 
/sys/power/state) and typing some data into the server terminal.

Then I disabled the wakeup as follows and repeated the test to ensure 
that the device would no longer wake up on incoming data, and that the 
data was received when the device resumes.

echo disabled > /sys/devices/platform/soc\@0/1e40000.ipa/power/wakeup

> 
>                      -Alex
> 
>> ---
>>   drivers/net/ipa/ipa_interrupt.c | 10 ++++------
>>   1 file changed, 4 insertions(+), 6 deletions(-)
>>
>> diff --git a/drivers/net/ipa/ipa_interrupt.c 
>> b/drivers/net/ipa/ipa_interrupt.c
>> index c19cd27ac852..9a1153e80a3a 100644
>> --- a/drivers/net/ipa/ipa_interrupt.c
>> +++ b/drivers/net/ipa/ipa_interrupt.c
>> @@ -22,6 +22,7 @@
>>   #include <linux/types.h>
>>   #include <linux/interrupt.h>
>>   #include <linux/pm_runtime.h>
>> +#include <linux/pm_wakeirq.h>
>>   #include "ipa.h"
>>   #include "ipa_reg.h"
>> @@ -269,9 +270,9 @@ struct ipa_interrupt *ipa_interrupt_config(struct 
>> ipa *ipa)
>>           goto err_kfree;
>>       }
>> -    ret = enable_irq_wake(irq);
>> +    ret = dev_pm_set_wake_irq(dev, irq);
>>       if (ret) {
>> -        dev_err(dev, "error %d enabling wakeup for \"ipa\" IRQ\n", ret);
>> +        dev_err(dev, "error %d registering \"ipa\" IRQ as wakeirq\n", 
>> ret);
>>           goto err_free_irq;
>>       }
>> @@ -289,11 +290,8 @@ struct ipa_interrupt *ipa_interrupt_config(struct 
>> ipa *ipa)
>>   void ipa_interrupt_deconfig(struct ipa_interrupt *interrupt)
>>   {
>>       struct device *dev = &interrupt->ipa->pdev->dev;
>> -    int ret;
>> -    ret = disable_irq_wake(interrupt->irq);
>> -    if (ret)
>> -        dev_err(dev, "error %d disabling \"ipa\" IRQ wakeup\n", ret);
>> +    dev_pm_clear_wake_irq(dev);
>>       free_irq(interrupt->irq, interrupt);
>>       kfree(interrupt);
>>   }
> 

-- 
--
Kind Regards,
Caleb (they/them)

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH net-next] net: ipa: use dev PM wakeirq handling
  2023-01-31 12:40   ` Caleb Connolly
@ 2023-01-31 13:04     ` Alex Elder
  0 siblings, 0 replies; 5+ messages in thread
From: Alex Elder @ 2023-01-31 13:04 UTC (permalink / raw)
  To: Caleb Connolly, David S. Miller, Eric Dumazet, Jakub Kicinski,
	Paolo Abeni
  Cc: elder, netdev, linux-arm-msm, phone-devel

On 1/31/23 6:40 AM, Caleb Connolly wrote:
> 
> 
> On 1/28/23 13:47, Alex Elder wrote:
>> On 1/27/23 2:27 PM, Caleb Connolly wrote:
>>> Replace the enable_irq_wake() call with one to dev_pm_set_wake_irq()
>>> instead. This will let the dev PM framework automatically manage the
>>> the wakeup capability of the ipa IRQ and ensure that userspace requests
>>> to enable/disable wakeup for the IPA via sysfs are respected.
>>>
>>> Signed-off-by: Caleb Connolly <caleb.connolly@linaro.org>
>>
>> Looks OK to me.  Can you say something about how you
>> tested this, and what the result was?  Thanks.
> 
> Ah yeah. This was tested on the SDM845 (IPA 3.5.1) based SHIFT6mq in the 
> UK with an EE SIM card.
> 
> All network connections were disabled except for mobile data which was 
> configured using ModemManager. Then I set up a basic TCP server using 
> netcat on a public IP address and connected to it from the device.
> 
> It is then possible to validate that the wakeirq fires and the interrupt 
> is handled correctly by putting the device into s2idle sleep (echo mem > 
> /sys/power/state) and typing some data into the server terminal.
> 
> Then I disabled the wakeup as follows and repeated the test to ensure 
> that the device would no longer wake up on incoming data, and that the 
> data was received when the device resumes.
> 
> echo disabled > /sys/devices/platform/soc\@0/1e40000.ipa/power/wakeup

Great explanation, thank you.  This looks good.

Reviewed-by: Alex Elder <elder@linaro.org>

>>
>>                      -Alex
>>
>>> ---
>>>   drivers/net/ipa/ipa_interrupt.c | 10 ++++------
>>>   1 file changed, 4 insertions(+), 6 deletions(-)
>>>
>>> diff --git a/drivers/net/ipa/ipa_interrupt.c 
>>> b/drivers/net/ipa/ipa_interrupt.c
>>> index c19cd27ac852..9a1153e80a3a 100644
>>> --- a/drivers/net/ipa/ipa_interrupt.c
>>> +++ b/drivers/net/ipa/ipa_interrupt.c
>>> @@ -22,6 +22,7 @@
>>>   #include <linux/types.h>
>>>   #include <linux/interrupt.h>
>>>   #include <linux/pm_runtime.h>
>>> +#include <linux/pm_wakeirq.h>
>>>   #include "ipa.h"
>>>   #include "ipa_reg.h"
>>> @@ -269,9 +270,9 @@ struct ipa_interrupt *ipa_interrupt_config(struct 
>>> ipa *ipa)
>>>           goto err_kfree;
>>>       }
>>> -    ret = enable_irq_wake(irq);
>>> +    ret = dev_pm_set_wake_irq(dev, irq);
>>>       if (ret) {
>>> -        dev_err(dev, "error %d enabling wakeup for \"ipa\" IRQ\n", 
>>> ret);
>>> +        dev_err(dev, "error %d registering \"ipa\" IRQ as 
>>> wakeirq\n", ret);
>>>           goto err_free_irq;
>>>       }
>>> @@ -289,11 +290,8 @@ struct ipa_interrupt 
>>> *ipa_interrupt_config(struct ipa *ipa)
>>>   void ipa_interrupt_deconfig(struct ipa_interrupt *interrupt)
>>>   {
>>>       struct device *dev = &interrupt->ipa->pdev->dev;
>>> -    int ret;
>>> -    ret = disable_irq_wake(interrupt->irq);
>>> -    if (ret)
>>> -        dev_err(dev, "error %d disabling \"ipa\" IRQ wakeup\n", ret);
>>> +    dev_pm_clear_wake_irq(dev);
>>>       free_irq(interrupt->irq, interrupt);
>>>       kfree(interrupt);
>>>   }
>>
> 


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH net-next] net: ipa: use dev PM wakeirq handling
  2023-01-27 20:27 [PATCH net-next] net: ipa: use dev PM wakeirq handling Caleb Connolly
  2023-01-28 13:47 ` Alex Elder
@ 2023-01-31 14:30 ` patchwork-bot+netdevbpf
  1 sibling, 0 replies; 5+ messages in thread
From: patchwork-bot+netdevbpf @ 2023-01-31 14:30 UTC (permalink / raw)
  To: Caleb Connolly
  Cc: elder, davem, edumazet, kuba, pabeni, elder, netdev,
	linux-arm-msm, phone-devel

Hello:

This patch was applied to netdev/net-next.git (master)
by Paolo Abeni <pabeni@redhat.com>:

On Fri, 27 Jan 2023 20:27:58 +0000 you wrote:
> Replace the enable_irq_wake() call with one to dev_pm_set_wake_irq()
> instead. This will let the dev PM framework automatically manage the
> the wakeup capability of the ipa IRQ and ensure that userspace requests
> to enable/disable wakeup for the IPA via sysfs are respected.
> 
> Signed-off-by: Caleb Connolly <caleb.connolly@linaro.org>
> 
> [...]

Here is the summary with links:
  - [net-next] net: ipa: use dev PM wakeirq handling
    https://git.kernel.org/netdev/net-next/c/df54fde451db

You are awesome, thank you!
-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html



^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2023-01-31 14:30 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-01-27 20:27 [PATCH net-next] net: ipa: use dev PM wakeirq handling Caleb Connolly
2023-01-28 13:47 ` Alex Elder
2023-01-31 12:40   ` Caleb Connolly
2023-01-31 13:04     ` Alex Elder
2023-01-31 14:30 ` patchwork-bot+netdevbpf

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.