Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755027Ab1BRR7W (ORCPT ); Fri, 18 Feb 2011 12:59:22 -0500 Received: from smtp-out.google.com ([216.239.44.51]:46374 "EHLO smtp-out.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753027Ab1BRR7T (ORCPT ); Fri, 18 Feb 2011 12:59:19 -0500 From: Vincent Palatin To: Peter Tyser Cc: LKML , Alek Du , Samuel Ortiz , David Brownell , Eric Miao , Uwe Kleine-K?nig , Mark Brown , Joe Perches , Alan Cox , Grant Likely , Olof , vbendeb , Vincent Palatin Subject: Re: [PATCH v3 4/4] gpio: Add support for Intel ICHx/3100/Series[56] GPIO Date: Fri, 18 Feb 2011 12:58:14 -0500 Message-Id: <1298051894-30600-1-git-send-email-vpalatin@chromium.org> X-Mailer: git-send-email 1.7.3.1 In-Reply-To: <1297983799-4747-4-git-send-email-ptyser@xes-inc.com> References: <1297983799-4747-4-git-send-email-ptyser@xes-inc.com> X-System-Of-Record: true Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1366 Lines: 34 Hi, I have tested it on a Pineview / Tigerpoint based board. It works well given you add the PCI ids for the tigerpoint/NM10 chipset (cf patch below). The Tigerpoint/NM10 is ICH7 based for the GPIO part. Tested-by: Vincent Palatin Signed-off-by: Vincent Palatin --- drivers/gpio/ichx_gpio.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/drivers/gpio/ichx_gpio.c b/drivers/gpio/ichx_gpio.c index 4c7aec6..4bba9af 100644 --- a/drivers/gpio/ichx_gpio.c +++ b/drivers/gpio/ichx_gpio.c @@ -394,6 +394,7 @@ static DEFINE_PCI_DEVICE_TABLE(ichx_pci_tbl) = { { ICHX_GPIO_PCI_DEVICE(PCI_DEVICE_ID_INTEL_ICH7_1, &ich7_desc) }, { ICHX_GPIO_PCI_DEVICE(PCI_DEVICE_ID_INTEL_ICH7_30, &ich7_desc) }, { ICHX_GPIO_PCI_DEVICE(PCI_DEVICE_ID_INTEL_ICH7_31, &ich7_desc) }, + { ICHX_GPIO_PCI_DEVICE(PCI_DEVICE_ID_INTEL_TGP_LPC, &ich7_desc) }, { ICHX_GPIO_PCI_DEVICE(PCI_DEVICE_ID_INTEL_ICH8_0, &ich7_desc) }, { ICHX_GPIO_PCI_DEVICE(PCI_DEVICE_ID_INTEL_ICH8_1, &ich7_desc) }, { ICHX_GPIO_PCI_DEVICE(PCI_DEVICE_ID_INTEL_ICH8_2, &ich7_desc) }, -- 1.7.3.1 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/