Re: [PATCH 6/6] i2c: designware: Move common probe code into i2c_dw_probe()

2015-10-10 Thread Wolfram Sang
> - I2C Adapter name will be "i2c-designware". Previously adapter name was > "Synopsys DesignWare I2C adapter" for platform and ACPI devices and > "i2c-designware-pci" for PCI devices. I have a small tendency to make it "Synopsys DesignWare I2C adapter" for all cases. Not much, though. > - I

Re: [PATCH 1/6] i2c: designware: Remove interrupt clearing from i2c_dw_pci_probe()

2015-10-10 Thread Wolfram Sang
On Mon, Aug 31, 2015 at 05:31:28PM +0300, Jarkko Nikula wrote: > There is no need to clear interrupts in i2c_dw_pci_probe() since only place > where interrupts are unmasked is i2c_dw_xfer_init() and there interrupts > are always cleared after commit 2a2d95e9d6d2 ("i2c: designware: always > clear in

Re: [PATCH v3] i2c: s3c2410: enable RuntimePM before registering to the core

2015-10-10 Thread Krzysztof Kozlowski
W dniu 10.10.2015 o 16:24, Wolfram Sang pisze: > From: Wolfram Sang > > The core may register clients attached to this master which may use > funtionality from the master. So, RuntimePM must be enabled before, otherwise > this will fail. While here, move drvdata, too. > > Signed-off-by: Wolfram

Re: [PATCH 0/4] Support multiplexed main SMBus interface on SB800

2015-10-10 Thread Wolfram Sang
On Tue, Aug 25, 2015 at 01:05:01PM +0200, Christian Fetzer wrote: > This is an attempt to upstream the patches created by Thomas Brandon and > Eddi De Pieri to support the multiplexed main SMBus interface on the SB800 > chipset. > (https://www.mail-archive.com/linux-i2c@vger.kernel.org/msg06757.ht

Re: [PATCH v3 0/7] i2c: img-scb: fixes to support i2c on pistachio

2015-10-10 Thread Wolfram Sang
On Thu, Sep 10, 2015 at 03:50:00PM +0100, Sifan Naeem wrote: > The following patches are required to fix the existing driver to > support i2c on pistachio. > > Tested on Pistachio bub using an Adafruit I2C Non-Volatile FRAM Breakout > (256Kbit / 32KByte) eeprom. > > Used i2c buildroot tools to te

Re: [Patch V8] i2c: imx: add runtime pm support to improve the performance

2015-10-10 Thread Wolfram Sang
On Fri, Sep 18, 2015 at 05:51:09PM +0800, Gao Pan wrote: > In our former i2c driver, i2c clk is enabled and disabled in > xfer function, which contributes to power saving. However, > the clk enable process brings a busy wait delay until the core > is stable. As a result, the performance is sacrific

[PATCH v3] i2c: s3c2410: enable RuntimePM before registering to the core

2015-10-10 Thread Wolfram Sang
From: Wolfram Sang The core may register clients attached to this master which may use funtionality from the master. So, RuntimePM must be enabled before, otherwise this will fail. While here, move drvdata, too. Signed-off-by: Wolfram Sang --- Changes since v2: don't call runtime pm on adaper

Re: [PATCH v2 3/4] i2c: s3c2410: enable RuntimePM before registering to the core

2015-10-10 Thread Wolfram Sang
On Sat, Oct 10, 2015 at 03:08:52PM +0900, Krzysztof Kozlowski wrote: > W dniu 09.10.2015 o 18:39, Wolfram Sang pisze: > > From: Wolfram Sang > > > > The core may register clients attached to this master which may use > > funtionality from the master. So, RuntimePM must be enabled before, > > oth