mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH v3 1/1] pps: clients: gpio: Bypass edge's direction check when not needed
@ 2024-04-25 12:28 Bastien Curutchet
  2024-04-25 12:42 ` Rodolfo Giometti
  0 siblings, 1 reply; 6+ messages in thread
From: Bastien Curutchet @ 2024-04-25 12:28 UTC (permalink / raw)
  To: Rodolfo Giometti
  Cc: linux-kernel, Thomas Petazzoni, herve.codina, christophercordahi,
	Bastien Curutchet

In the IRQ handler, the GPIO's state is read to verify the direction of
the edge that triggered the interruption before generating the PPS event.
If a pulse is too short, the GPIO line can reach back its original state
before this verification and the PPS event is lost.

This check is needed when info->capture_clear is set because it needs
interruptions on both rising and falling edges. When info->capture_clear
is not set, interruption is triggered by one edge only so this check can
be omitted.

Add a warning if irq_handler is left without triggering any PPS event.
Bypass the edge's direction verification when info->capture_clear is not
set.

Signed-off-by: Bastien Curutchet <bastien.curutchet@bootlin.com>
---
Changes in v3:
 - Add a warning in irq_handler
Changes in v2:
 - Modifiy the way the bypass is done to avoid code duplication

v1: https://lore.kernel.org/all/20240410113502.73038-1-bastien.curutchet@bootlin.com/
v2: https://lore.kernel.org/all/20240411061329.7262-1-bastien.curutchet@bootlin.com/

 drivers/pps/clients/pps-gpio.c | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/drivers/pps/clients/pps-gpio.c b/drivers/pps/clients/pps-gpio.c
index 2f4b11b4dfcd..af62d944d051 100644
--- a/drivers/pps/clients/pps-gpio.c
+++ b/drivers/pps/clients/pps-gpio.c
@@ -52,7 +52,9 @@ static irqreturn_t pps_gpio_irq_handler(int irq, void *data)
 
 	info = data;
 
-	rising_edge = gpiod_get_value(info->gpio_pin);
+	/* Small trick to bypass the check on edge's direction when capture_clear is unset */
+	rising_edge = info->capture_clear ?
+		      gpiod_get_value(info->gpio_pin) : !info->assert_falling_edge;
 	if ((rising_edge && !info->assert_falling_edge) ||
 			(!rising_edge && info->assert_falling_edge))
 		pps_event(info->pps, &ts, PPS_CAPTUREASSERT, data);
@@ -60,6 +62,8 @@ static irqreturn_t pps_gpio_irq_handler(int irq, void *data)
 			((rising_edge && info->assert_falling_edge) ||
 			(!rising_edge && !info->assert_falling_edge)))
 		pps_event(info->pps, &ts, PPS_CAPTURECLEAR, data);
+	else
+		dev_warn_ratelimited(info->pps->dev, "IRQ did not trigger any PPS event\n");
 
 	return IRQ_HANDLED;
 }
-- 
2.44.0


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

* Re: [PATCH v3 1/1] pps: clients: gpio: Bypass edge's direction check when not needed
  2024-04-25 12:28 [PATCH v3 1/1] pps: clients: gpio: Bypass edge's direction check when not needed Bastien Curutchet
@ 2024-04-25 12:42 ` Rodolfo Giometti
  2024-06-26 12:55   ` Bastien Curutchet
  0 siblings, 1 reply; 6+ messages in thread
From: Rodolfo Giometti @ 2024-04-25 12:42 UTC (permalink / raw)
  To: Bastien Curutchet
  Cc: linux-kernel, Thomas Petazzoni, herve.codina, christophercordahi,
	Greg Kroah-Hartman, Andrew Morton

On 25/04/24 14:28, Bastien Curutchet wrote:
> In the IRQ handler, the GPIO's state is read to verify the direction of
> the edge that triggered the interruption before generating the PPS event.
> If a pulse is too short, the GPIO line can reach back its original state
> before this verification and the PPS event is lost.
> 
> This check is needed when info->capture_clear is set because it needs
> interruptions on both rising and falling edges. When info->capture_clear
> is not set, interruption is triggered by one edge only so this check can
> be omitted.
> 
> Add a warning if irq_handler is left without triggering any PPS event.
> Bypass the edge's direction verification when info->capture_clear is not
> set.
> 
> Signed-off-by: Bastien Curutchet <bastien.curutchet@bootlin.com>

Acked-by: Rodolfo Giometti <giometti@enneenne.com>

> ---
> Changes in v3:
>   - Add a warning in irq_handler
> Changes in v2:
>   - Modifiy the way the bypass is done to avoid code duplication
> 
> v1: https://lore.kernel.org/all/20240410113502.73038-1-bastien.curutchet@bootlin.com/
> v2: https://lore.kernel.org/all/20240411061329.7262-1-bastien.curutchet@bootlin.com/
> 
>   drivers/pps/clients/pps-gpio.c | 6 +++++-
>   1 file changed, 5 insertions(+), 1 deletion(-)
> 
> diff --git a/drivers/pps/clients/pps-gpio.c b/drivers/pps/clients/pps-gpio.c
> index 2f4b11b4dfcd..af62d944d051 100644
> --- a/drivers/pps/clients/pps-gpio.c
> +++ b/drivers/pps/clients/pps-gpio.c
> @@ -52,7 +52,9 @@ static irqreturn_t pps_gpio_irq_handler(int irq, void *data)
>   
>   	info = data;
>   
> -	rising_edge = gpiod_get_value(info->gpio_pin);
> +	/* Small trick to bypass the check on edge's direction when capture_clear is unset */
> +	rising_edge = info->capture_clear ?
> +		      gpiod_get_value(info->gpio_pin) : !info->assert_falling_edge;
>   	if ((rising_edge && !info->assert_falling_edge) ||
>   			(!rising_edge && info->assert_falling_edge))
>   		pps_event(info->pps, &ts, PPS_CAPTUREASSERT, data);
> @@ -60,6 +62,8 @@ static irqreturn_t pps_gpio_irq_handler(int irq, void *data)
>   			((rising_edge && info->assert_falling_edge) ||
>   			(!rising_edge && !info->assert_falling_edge)))
>   		pps_event(info->pps, &ts, PPS_CAPTURECLEAR, data);
> +	else
> +		dev_warn_ratelimited(info->pps->dev, "IRQ did not trigger any PPS event\n");
>   
>   	return IRQ_HANDLED;
>   }

-- 
GNU/Linux Solutions                  e-mail: giometti@enneenne.com
Linux Device Driver                          giometti@linux.it
Embedded Systems                     phone:  +39 349 2432127
UNIX programming


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

* Re: [PATCH v3 1/1] pps: clients: gpio: Bypass edge's direction check when not needed
  2024-04-25 12:42 ` Rodolfo Giometti
@ 2024-06-26 12:55   ` Bastien Curutchet
  2024-06-26 14:16     ` Rodolfo Giometti
  0 siblings, 1 reply; 6+ messages in thread
From: Bastien Curutchet @ 2024-06-26 12:55 UTC (permalink / raw)
  To: Rodolfo Giometti
  Cc: linux-kernel, Thomas Petazzoni, herve.codina, christophercordahi,
	Greg Kroah-Hartman, Andrew Morton

Hi Rodolfo

On 4/25/24 14:42, Rodolfo Giometti wrote:
> On 25/04/24 14:28, Bastien Curutchet wrote:
>> In the IRQ handler, the GPIO's state is read to verify the direction of
>> the edge that triggered the interruption before generating the PPS event.
>> If a pulse is too short, the GPIO line can reach back its original state
>> before this verification and the PPS event is lost.
>>
>> This check is needed when info->capture_clear is set because it needs
>> interruptions on both rising and falling edges. When info->capture_clear
>> is not set, interruption is triggered by one edge only so this check can
>> be omitted.
>>
>> Add a warning if irq_handler is left without triggering any PPS event.
>> Bypass the edge's direction verification when info->capture_clear is not
>> set.
>>
>> Signed-off-by: Bastien Curutchet <bastien.curutchet@bootlin.com>
> 
> Acked-by: Rodolfo Giometti <giometti@enneenne.com>
> 

I don't think I've received any updates since you acked this. Is there 
something missing before the patch can be applied?

Best regards,
Bastien

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

* Re: [PATCH v3 1/1] pps: clients: gpio: Bypass edge's direction check when not needed
  2024-06-26 12:55   ` Bastien Curutchet
@ 2024-06-26 14:16     ` Rodolfo Giometti
  2024-12-04 10:34       ` Bastien Curutchet
  0 siblings, 1 reply; 6+ messages in thread
From: Rodolfo Giometti @ 2024-06-26 14:16 UTC (permalink / raw)
  To: Bastien Curutchet
  Cc: linux-kernel, Thomas Petazzoni, herve.codina, christophercordahi,
	Greg Kroah-Hartman, Andrew Morton

On 26/06/24 14:55, Bastien Curutchet wrote:
> Hi Rodolfo
> 
> On 4/25/24 14:42, Rodolfo Giometti wrote:
>> On 25/04/24 14:28, Bastien Curutchet wrote:
>>> In the IRQ handler, the GPIO's state is read to verify the direction of
>>> the edge that triggered the interruption before generating the PPS event.
>>> If a pulse is too short, the GPIO line can reach back its original state
>>> before this verification and the PPS event is lost.
>>>
>>> This check is needed when info->capture_clear is set because it needs
>>> interruptions on both rising and falling edges. When info->capture_clear
>>> is not set, interruption is triggered by one edge only so this check can
>>> be omitted.
>>>
>>> Add a warning if irq_handler is left without triggering any PPS event.
>>> Bypass the edge's direction verification when info->capture_clear is not
>>> set.
>>>
>>> Signed-off-by: Bastien Curutchet <bastien.curutchet@bootlin.com>
>>
>> Acked-by: Rodolfo Giometti <giometti@enneenne.com>
>>
> 
> I don't think I've received any updates since you acked this. Is there something 
> missing before the patch can be applied?

No updates. It can be applied.

Ciao,

Rodolfo

-- 
GNU/Linux Solutions                  e-mail: giometti@enneenne.com
Linux Device Driver                          giometti@linux.it
Embedded Systems                     phone:  +39 349 2432127
UNIX programming


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

* Re: [PATCH v3 1/1] pps: clients: gpio: Bypass edge's direction check when not needed
  2024-06-26 14:16     ` Rodolfo Giometti
@ 2024-12-04 10:34       ` Bastien Curutchet
  2024-12-04 11:00         ` Rodolfo Giometti
  0 siblings, 1 reply; 6+ messages in thread
From: Bastien Curutchet @ 2024-12-04 10:34 UTC (permalink / raw)
  To: Rodolfo Giometti
  Cc: linux-kernel, Thomas Petazzoni, herve.codina, christophercordahi,
	Greg Kroah-Hartman, Andrew Morton

Hi Rodolfo,

I revive this topic.

On 6/26/24 4:16 PM, Rodolfo Giometti wrote:
> On 26/06/24 14:55, Bastien Curutchet wrote:
>> Hi Rodolfo
>>
>> On 4/25/24 14:42, Rodolfo Giometti wrote:
>>> On 25/04/24 14:28, Bastien Curutchet wrote:
>>>> In the IRQ handler, the GPIO's state is read to verify the direction of
>>>> the edge that triggered the interruption before generating the PPS 
>>>> event.
>>>> If a pulse is too short, the GPIO line can reach back its original 
>>>> state
>>>> before this verification and the PPS event is lost.
>>>>
>>>> This check is needed when info->capture_clear is set because it needs
>>>> interruptions on both rising and falling edges. When info- 
>>>> >capture_clear
>>>> is not set, interruption is triggered by one edge only so this check 
>>>> can
>>>> be omitted.
>>>>
>>>> Add a warning if irq_handler is left without triggering any PPS event.
>>>> Bypass the edge's direction verification when info->capture_clear is 
>>>> not
>>>> set.
>>>>
>>>> Signed-off-by: Bastien Curutchet <bastien.curutchet@bootlin.com>
>>>
>>> Acked-by: Rodolfo Giometti <giometti@enneenne.com>
>>>
>>
>> I don't think I've received any updates since you acked this. Is there 
>> something missing before the patch can be applied?
> 
> No updates. It can be applied.
> 

In the MAINTAINER file, you are listed as the sole maintainer for the 
PPS subsystem. Could you let me know if there's someone else in charge 
of applying patches so I can gently ping them please ?

I checked, the patch still applies to v6.13-rc1

Best regards,
Bastien

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

* Re: [PATCH v3 1/1] pps: clients: gpio: Bypass edge's direction check when not needed
  2024-12-04 10:34       ` Bastien Curutchet
@ 2024-12-04 11:00         ` Rodolfo Giometti
  0 siblings, 0 replies; 6+ messages in thread
From: Rodolfo Giometti @ 2024-12-04 11:00 UTC (permalink / raw)
  To: Bastien Curutchet
  Cc: linux-kernel, Thomas Petazzoni, herve.codina, christophercordahi,
	Greg Kroah-Hartman, Andrew Morton

On 04/12/24 11:34, Bastien Curutchet wrote:
> Hi Rodolfo,
> 
> I revive this topic.
> 
> On 6/26/24 4:16 PM, Rodolfo Giometti wrote:
>> On 26/06/24 14:55, Bastien Curutchet wrote:
>>> Hi Rodolfo
>>>
>>> On 4/25/24 14:42, Rodolfo Giometti wrote:
>>>> On 25/04/24 14:28, Bastien Curutchet wrote:
>>>>> In the IRQ handler, the GPIO's state is read to verify the direction of
>>>>> the edge that triggered the interruption before generating the PPS event.
>>>>> If a pulse is too short, the GPIO line can reach back its original state
>>>>> before this verification and the PPS event is lost.
>>>>>
>>>>> This check is needed when info->capture_clear is set because it needs
>>>>> interruptions on both rising and falling edges. When info- >capture_clear
>>>>> is not set, interruption is triggered by one edge only so this check can
>>>>> be omitted.
>>>>>
>>>>> Add a warning if irq_handler is left without triggering any PPS event.
>>>>> Bypass the edge's direction verification when info->capture_clear is not
>>>>> set.
>>>>>
>>>>> Signed-off-by: Bastien Curutchet <bastien.curutchet@bootlin.com>
>>>>
>>>> Acked-by: Rodolfo Giometti <giometti@enneenne.com>
>>>>
>>>
>>> I don't think I've received any updates since you acked this. Is there 
>>> something missing before the patch can be applied?
>>
>> No updates. It can be applied.
>>
> 
> In the MAINTAINER file, you are listed as the sole maintainer for the PPS 
> subsystem. Could you let me know if there's someone else in charge of applying 
> patches so I can gently ping them please ?
> 
> I checked, the patch still applies to v6.13-rc1

I was quite sure to have acked and then forwarded this patch to Greg and Andrew 
for the inclusion.

If not (I'm sorry), please resend the patch, and I'm going to pass it to Greg 
and Andrew right away.

Ciao,

Rodolfo

-- 
GNU/Linux Solutions                  e-mail: giometti@enneenne.com
Linux Device Driver                          giometti@linux.it
Embedded Systems                     phone:  +39 349 2432127
UNIX programming


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

end of thread, other threads:[~2024-12-04 11:03 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-04-25 12:28 [PATCH v3 1/1] pps: clients: gpio: Bypass edge's direction check when not needed Bastien Curutchet
2024-04-25 12:42 ` Rodolfo Giometti
2024-06-26 12:55   ` Bastien Curutchet
2024-06-26 14:16     ` Rodolfo Giometti
2024-12-04 10:34       ` Bastien Curutchet
2024-12-04 11:00         ` Rodolfo Giometti

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®