]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
pinctrl: baytrail: Enable glitch filter for GPIOs used as interrupts
authorHans de Goede <hdegoede@redhat.com>
Mon, 1 Jan 2018 12:23:57 +0000 (13:23 +0100)
committerLinus Walleij <linus.walleij@linaro.org>
Mon, 8 Jan 2018 07:15:46 +0000 (08:15 +0100)
On some systems, some PCB traces attached to GpioInts are routed in such
a way that they pick up enough interference to constantly (many times per
second) trigger.

Enabling glitch-filtering fixes this.

Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Acked-by: Mika Westerberg <mika.westerberg@linux.intel.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
drivers/pinctrl/intel/pinctrl-baytrail.c

index 9c1ca29c60b758c3f5273514b00786c468775128..6b52ea1440a6a09c163d8e2c79a8f592516b148a 100644 (file)
@@ -46,6 +46,9 @@
 #define BYT_TRIG_POS           BIT(25)
 #define BYT_TRIG_LVL           BIT(24)
 #define BYT_DEBOUNCE_EN                BIT(20)
+#define BYT_GLITCH_FILTER_EN   BIT(19)
+#define BYT_GLITCH_F_SLOW_CLK  BIT(17)
+#define BYT_GLITCH_F_FAST_CLK  BIT(16)
 #define BYT_PULL_STR_SHIFT     9
 #define BYT_PULL_STR_MASK      (3 << BYT_PULL_STR_SHIFT)
 #define BYT_PULL_STR_2K                (0 << BYT_PULL_STR_SHIFT)
@@ -1579,6 +1582,9 @@ static int byt_irq_type(struct irq_data *d, unsigned int type)
         */
        value &= ~(BYT_DIRECT_IRQ_EN | BYT_TRIG_POS | BYT_TRIG_NEG |
                   BYT_TRIG_LVL);
+       /* Enable glitch filtering */
+       value |= BYT_GLITCH_FILTER_EN | BYT_GLITCH_F_SLOW_CLK |
+                BYT_GLITCH_F_FAST_CLK;
 
        writel(value, reg);