[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20141202112130.GD23671@leverpostej>
Date: Tue, 2 Dec 2014 11:21:30 +0000
From: Mark Rutland <mark.rutland@....com>
To: Harini Katakam <harinik@...inx.com>
Cc: "wsa@...-dreams.de" <wsa@...-dreams.de>,
"grant.likely@...aro.org" <grant.likely@...aro.org>,
"robh+dt@...nel.org" <robh+dt@...nel.org>,
Pawel Moll <Pawel.Moll@....com>,
"ijc+devicetree@...lion.org.uk" <ijc+devicetree@...lion.org.uk>,
"galak@...eaurora.org" <galak@...eaurora.org>,
"michal.simek@...inx.com" <michal.simek@...inx.com>,
"soren.brinkmann@...inx.com" <soren.brinkmann@...inx.com>,
"linux-arm-kernel@...ts.infradead.org"
<linux-arm-kernel@...ts.infradead.org>,
"linux-i2c@...r.kernel.org" <linux-i2c@...r.kernel.org>,
"linux-kernel@...r.kernel.org" <linux-kernel@...r.kernel.org>,
"devicetree@...r.kernel.org" <devicetree@...r.kernel.org>,
"vishnum@...inx.com" <vishnum@...inx.com>
Subject: Re: [PATCH 4/4] i2c: cadence: Defeature repeated start based on
devicetree property
On Tue, Dec 02, 2014 at 10:05:49AM +0000, Harini Katakam wrote:
> From: Vishnu Motghare <vishnum@...inx.com>
>
> This patch defeatures repeated start in the driver if
> "defeature-repeated-start" property is present in the devicetree.
>
> This defeature is proposed due to a few bugs in the controller
> - completion indication is not given to the driver at the end of
> a read/receive transfer with HOLD bit set.
> - Invalid read transaction are generated on the bus when HW timeout
> condition occurs with HOLD bit set.
>
> Signed-off-by: Vishnu Motghare <vishnum@...inx.com>
> Signed-off-by: Harini Katakam <harinik@...inx.com>
> ---
> drivers/i2c/busses/i2c-cadence.c | 44 +++++++++++++++++++++++++++-----------
> 1 file changed, 31 insertions(+), 13 deletions(-)
[...]
> @@ -840,6 +856,8 @@ static int cdns_i2c_probe(struct platform_device *pdev)
> cdns_i2c_writereg(CDNS_I2C_CR_ACK_EN | CDNS_I2C_CR_NEA | CDNS_I2C_CR_MS,
> CDNS_I2C_CR_OFFSET);
>
> + of_property_read_u32(pdev->dev.of_node, "defeature-repeated-start",
> + &id->defeature_repeated_start);
This will not work with the binding you described. You want to treat
this as a bool, and use of_property_read_bool.
Thanks,
Mark.
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists