From patchwork Wed Jan 13 00:58:53 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Seth Heasley X-Patchwork-Id: 72483 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter.kernel.org (8.14.3/8.14.2) with ESMTP id o0D13QFR014721 for ; Wed, 13 Jan 2010 01:03:26 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752384Ab0AMBDZ (ORCPT ); Tue, 12 Jan 2010 20:03:25 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1752191Ab0AMBDZ (ORCPT ); Tue, 12 Jan 2010 20:03:25 -0500 Received: from mga14.intel.com ([143.182.124.37]:64670 "EHLO mga14.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751180Ab0AMBDY (ORCPT ); Tue, 12 Jan 2010 20:03:24 -0500 Received: from azsmga001.ch.intel.com ([10.2.17.19]) by azsmga102.ch.intel.com with ESMTP; 12 Jan 2010 17:03:23 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="4.47,316,1257148800"; d="scan'208";a="232068311" Received: from unknown (HELO linux-0rue.localnet) ([10.7.160.187]) by azsmga001.ch.intel.com with ESMTP; 12 Jan 2010 17:03:23 -0800 From: Seth Heasley Organization: Intel Corporation To: linux-kernel@vger.kernel.org, khali@linux-fr.org, i2c@lm-sensors.org, linux-pci@vger.kernel.org, jbarnes@virtuousgeek.org Subject: [PATCH 2.6.32.3] i2c-i801: SMBus patch for Intel Cougar Point DeviceIDs Date: Tue, 12 Jan 2010 16:58:53 -0800 User-Agent: KMail/1.10.3 (Linux/2.6.27.7-9-default; KDE/4.1.3; x86_64; ; ) Cc: seth.heasley@intel.com MIME-Version: 1.0 Content-Disposition: inline Message-Id: <201001121658.54044.seth.heasley@intel.com> Sender: linux-pci-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-pci@vger.kernel.org --- linux-2.6.32.3/drivers/i2c/busses/i2c-i801.c.orig 2010-01-06 15:07:45.000000000 -0800 +++ linux-2.6.32.3/drivers/i2c/busses/i2c-i801.c 2010-01-07 13:10:28.000000000 -0800 @@ -41,7 +41,8 @@ Tolapai 0x5032 32 hard yes yes yes ICH10 0x3a30 32 hard yes yes yes ICH10 0x3a60 32 hard yes yes yes - PCH 0x3b30 32 hard yes yes yes + 3400/5 Series (PCH) 0x3b30 32 hard yes yes yes + CPT 0x1c22 32 hard yes yes yes Features supported by this driver: Software PEC no @@ -578,6 +579,7 @@ { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ICH10_4) }, { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ICH10_5) }, { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_PCH_SMBUS) }, + { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_CPT_SMBUS) }, { 0, } }; @@ -707,6 +709,7 @@ case PCI_DEVICE_ID_INTEL_ICH10_4: case PCI_DEVICE_ID_INTEL_ICH10_5: case PCI_DEVICE_ID_INTEL_PCH_SMBUS: + case PCI_DEVICE_ID_INTEL_CPT_SMBUS: i801_features |= FEATURE_I2C_BLOCK_READ; /* fall through */ case PCI_DEVICE_ID_INTEL_82801DB_3: --- linux-2.6.32.3/drivers/i2c/busses/Kconfig.orig 2010-01-06 15:07:45.000000000 -0800 +++ linux-2.6.32.3/drivers/i2c/busses/Kconfig 2010-01-07 13:10:28.000000000 -0800 @@ -98,6 +98,7 @@ Tolapai ICH10 PCH + CPT This driver can also be built as a module. If so, the module will be called i2c-i801.