[PATCH] pps-gpio: use IRQ edge config when not capturing both edges

From: Tim Harvey
Date: Fri Sep 08 2017 - 15:50:36 EST


PPS signals with very short pulse-widths can be missed if their state
changes by the time the interrupt handler reads the GPIO pin state.

To avoid this in the case where we are only looking for one edge we can
use the edge configuration for the pin state but fall back to reading the
pin if both edges are being watched.

Signed-off-by: Tim Harvey <tharvey@xxxxxxxxxxxxx>
---
drivers/pps/clients/pps-gpio.c | 11 ++++++++++-
1 file changed, 10 insertions(+), 1 deletion(-)

diff --git a/drivers/pps/clients/pps-gpio.c b/drivers/pps/clients/pps-gpio.c
index 333ad7d..0d2b807 100644
--- a/drivers/pps/clients/pps-gpio.c
+++ b/drivers/pps/clients/pps-gpio.c
@@ -61,7 +61,16 @@ static irqreturn_t pps_gpio_irq_handler(int irq, void *data)

info = data;

- rising_edge = gpio_get_value(info->gpio_pin);
+ /*
+ * if not capturing both assert/clear events use the IRQ state
+ * otherwise read the gpio state from the pin (which could miss
+ * assertions on very small pulse-widths due to interrupt latency
+ * and CPU performance).
+ */
+ if (!info->capture_clear)
+ rising_edge = !info->assert_falling_edge;
+ else
+ rising_edge = gpio_get_value(info->gpio_pin);
if ((rising_edge && !info->assert_falling_edge) ||
(!rising_edge && info->assert_falling_edge))
pps_event(info->pps, &ts, PPS_CAPTUREASSERT, NULL);
--
2.7.4