From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S933864AbdKQNwi (ORCPT ); Fri, 17 Nov 2017 08:52:38 -0500 Received: from mga02.intel.com ([134.134.136.20]:49704 "EHLO mga02.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756840AbdKQNwa (ORCPT ); Fri, 17 Nov 2017 08:52:30 -0500 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.44,409,1505804400"; d="scan'208";a="1245273634" Date: Fri, 17 Nov 2017 15:52:25 +0200 From: Mika Westerberg To: Chris Chiu Cc: Daniel Drake , heikki.krogerus@linux.intel.com, linux-gpio@vger.kernel.org, Linux Kernel , Endless Linux Upstreaming Team , Jarkko Nikula Subject: Re: intel-gpio interrupts stop firing with Focaltech I2C-HID touchpad Message-ID: <20171117135225.GG17200@lahna.fi.intel.com> References: <20171116115244.GQ17200@lahna.fi.intel.com> <20171116130743.GT17200@lahna.fi.intel.com> <20171117091134.GB17200@lahna.fi.intel.com> <20171117110057.GD17200@lahna.fi.intel.com> <20171117133518.GF17200@lahna.fi.intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20171117133518.GF17200@lahna.fi.intel.com> Organization: Intel Finland Oy - BIC 0357606-4 - Westendinkatu 7, 02160 Espoo User-Agent: Mutt/1.9.1 (2017-09-22) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Fri, Nov 17, 2017 at 03:35:18PM +0200, Mika Westerberg wrote: > > pin 18 (GPIO_18) GPIO 0x40900100 0x00024075 Hmm, If I decode 0x40900100 correctly PADCFG0_GPIROUTIOXAPIC (BIT 20) flag is set for the pin. This means the interrupt is routed to IO-APIC instead. Now, we do clear that flag along with the others when the GPIO is requested through gpio_request() but in this case we go through irqchip instead so the flag is not cleared. I wonder if the following patch changes anything? diff --git a/drivers/pinctrl/intel/pinctrl-intel.c b/drivers/pinctrl/intel/pinctrl-intel.c index 71df0f70b61f..06af096f5768 100644 --- a/drivers/pinctrl/intel/pinctrl-intel.c +++ b/drivers/pinctrl/intel/pinctrl-intel.c @@ -939,6 +939,10 @@ static int intel_gpio_irq_type(struct irq_data *d, unsigned type) value &= ~(PADCFG0_RXEVCFG_MASK | PADCFG0_RXINV); + /* Disable SCI/SMI/NMI generation */ + value &= ~(PADCFG0_GPIROUTIOXAPIC | PADCFG0_GPIROUTSCI); + value &= ~(PADCFG0_GPIROUTSMI | PADCFG0_GPIROUTNMI); + if ((type & IRQ_TYPE_EDGE_BOTH) == IRQ_TYPE_EDGE_BOTH) { value |= PADCFG0_RXEVCFG_EDGE_BOTH << PADCFG0_RXEVCFG_SHIFT; } else if (type & IRQ_TYPE_EDGE_FALLING) {