From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932416AbcHPOH7 (ORCPT ); Tue, 16 Aug 2016 10:07:59 -0400 Received: from mga11.intel.com ([192.55.52.93]:38340 "EHLO mga11.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932172AbcHPOH6 (ORCPT ); Tue, 16 Aug 2016 10:07:58 -0400 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.28,529,1464678000"; d="scan'208";a="749438020" From: "De Marchi, Lucas" To: "jarkko.nikula@linux.intel.com" , "linux-i2c@vger.kernel.org" CC: "mika.westerberg@linux.intel.com" , "linux-kernel@vger.kernel.org" , "christian.ruppert@alitech.com" , "Souza, Jose" Subject: Re: [PATCH v3 2/3] i2c: designware: detect when dynamic tar update is possible Thread-Topic: [PATCH v3 2/3] i2c: designware: detect when dynamic tar update is possible Thread-Index: AQHR6Rv03fkJBlPFWUimlh7oKQTTwKBMMCMAgAACIAA= Date: Tue, 16 Aug 2016 14:07:50 +0000 Message-ID: <1471356468.2907.4.camel@intel.com> References: <1469743424-2480-1-git-send-email-lucas.demarchi@intel.com> <1469743424-2480-3-git-send-email-lucas.demarchi@intel.com> In-Reply-To: Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-originating-ip: [10.255.91.245] Content-Type: text/plain; charset="utf-8" Content-ID: <83334F3C09DF94428D8B9864E4FB33BD@intel.com> MIME-Version: 1.0 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Transfer-Encoding: 8bit X-MIME-Autoconverted: from base64 to 8bit by mail.home.local id u7GE84fl010233 On Tue, 2016-08-16 at 17:00 +0300, Jarkko Nikula wrote: > Hi, + Wolfram > > On 07/29/2016 01:03 AM, Lucas De Marchi wrote: > > > > This adapter can be synthesized with dynamic tar update enabled or > > disabled. > > When enabled it is not necessary to disable the adapter to change > > the slave > > address in some situations, which saves some time per transaction. > > > > There is no direct register to know if this feature is enabled but > > we can do it > > indirectly by writing to the 10BIT_ADDR field in IC_CON: this field > > is > > read only when dynamic tar update is enabled. > > > > Signed-off-by: Lucas De Marchi > > Signed-off-by: José Roberto de Souza > > --- > >  drivers/i2c/busses/i2c-designware-core.c | 37 > > ++++++++++++++++++++++---------- > >  drivers/i2c/busses/i2c-designware-core.h |  1 + > >  2 files changed, 27 insertions(+), 11 deletions(-) > > > > diff --git a/drivers/i2c/busses/i2c-designware-core.c > > b/drivers/i2c/busses/i2c-designware-core.c > > index 2c61585..a8408db 100644 > > --- a/drivers/i2c/busses/i2c-designware-core.c > > +++ b/drivers/i2c/busses/i2c-designware-core.c > > @@ -388,6 +388,20 @@ int i2c_dw_init(struct dw_i2c_dev *dev) > >   /* configure the i2c master */ > >   dw_writel(dev, dev->master_cfg , DW_IC_CON); > > > > + /* > > +  * Test if dynamic TAR update is enabled in this > > controller by writing to > > Over 80 characters in this line. I'll fix this and wait for more comments (or a few days) before sending a new version. > > +  */ > > + reg = dw_readl(dev, DW_IC_CON); > > + dw_writel(dev, reg ^ DW_IC_CON_10BITADDR_MASTER, > > DW_IC_CON); > > + > > + if ((dw_readl(dev, DW_IC_CON) & > > DW_IC_CON_10BITADDR_MASTER) == > > +     (reg & DW_IC_CON_10BITADDR_MASTER)) { > > + dev->dynamic_tar_update_enabled = true; > > + dev_dbg(dev->dev, "Dynamic TAR update enabled"); > > + } > > Is this possible to move to i2c_dw_probe()? I guess the enabled > status  > doesn't change runtime? It was actually useful at this place during development of this patch because we could check any unexpected change in behavior when resuming. We did catch a bug because of this and fixed. I'm not sure if now it makes more sense to move to probe method. I'd leave it where it is, but I'm open to move it there. thanks Lucas De Marchi