From patchwork Mon Jan 10 18:58:13 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Seth Heasley X-Patchwork-Id: 469461 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter1.kernel.org (8.14.4/8.14.3) with ESMTP id p0AJ8IEL019016 for ; Mon, 10 Jan 2011 19:08:19 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751457Ab1AJTIR (ORCPT ); Mon, 10 Jan 2011 14:08:17 -0500 Received: from mga09.intel.com ([134.134.136.24]:49866 "EHLO mga09.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750852Ab1AJTIQ (ORCPT ); Mon, 10 Jan 2011 14:08:16 -0500 Received: from orsmga001.jf.intel.com ([10.7.209.18]) by orsmga102.jf.intel.com with ESMTP; 10 Jan 2011 11:08:16 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="4.60,302,1291622400"; d="scan'208";a="695364303" Received: from unknown (HELO linux-0rue.localnet) ([10.7.161.149]) by orsmga001.jf.intel.com with ESMTP; 10 Jan 2011 11:08:16 -0800 From: Seth Heasley Organization: Intel Corporation To: jbarnes@virtuousgeek.org Subject: [PATCH 2.6.37] irq: irq and pci_ids patch for Intel DH89xxCC DeviceIDs Date: Mon, 10 Jan 2011 10:58:13 -0800 User-Agent: KMail/1.10.3 (Linux/2.6.27.7-9-default; KDE/4.1.3; x86_64; ; ) Cc: linux-kernel@vger.kernel.org, linux-pci@vger.kernel.org, khali@linux-fr.org, seth.heasley@intel.com MIME-Version: 1.0 Content-Disposition: inline Message-Id: <201101101058.13515.seth.heasley@intel.com> Sender: linux-pci-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-pci@vger.kernel.org X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.6 (demeter1.kernel.org [140.211.167.41]); Mon, 10 Jan 2011 19:08:19 +0000 (UTC) --- linux-2.6.37/include/linux/pci_ids.h.orig 2011-01-04 16:50:19.000000000 -0800 +++ linux-2.6.37/include/linux/pci_ids.h 2011-01-06 14:25:05.000000000 -0800 @@ -2469,6 +2469,9 @@ #define PCI_DEVICE_ID_INTEL_COUGARPOINT_LPC_MAX 0x1c5f #define PCI_DEVICE_ID_INTEL_PATSBURG_SMBUS 0x1d22 #define PCI_DEVICE_ID_INTEL_PATSBURG_LPC 0x1d40 +#define PCI_DEVICE_ID_INTEL_DH89XXCC_LPC_MIN 0x2310 +#define PCI_DEVICE_ID_INTEL_DH89XXCC_LPC_MAX 0x231f +#define PCI_DEVICE_ID_INTEL_DH89XXCC_SMBUS 0x2330 #define PCI_DEVICE_ID_INTEL_82801AA_0 0x2410 #define PCI_DEVICE_ID_INTEL_82801AA_1 0x2411 #define PCI_DEVICE_ID_INTEL_82801AA_3 0x2413 --- linux-2.6.37/arch/x86/pci/irq.c.orig 2011-01-04 16:50:19.000000000 -0800 +++ linux-2.6.37/arch/x86/pci/irq.c 2011-01-06 14:16:00.000000000 -0800 @@ -611,6 +611,15 @@ r->set = pirq_piix_set; return 1; } + + if ((device >= PCI_DEVICE_ID_INTEL_DH89XXCC_LPC_MIN) && + (device <= PCI_DEVICE_ID_INTEL_DH89XXCC_LPC_MAX)) { + r->name = "PIIX/ICH"; + r->get = pirq_piix_get; + r->set = pirq_piix_set; + return 1; + } + return 0; } -- To unsubscribe from this list: send the line "unsubscribe linux-pci" in