From: Stephen Warren <swarren@wwwdotorg.org>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH 1/3] i2c: tegra: use repeated start for reads
Date: Wed, 25 Jun 2014 22:09:11 -0600 [thread overview]
Message-ID: <53AB9CE7.80101@wwwdotorg.org> (raw)
In-Reply-To: <CAPnjgZ3OP0k9vRbjFhAtiRBgz8PhyeoUsBsOvDAzt5fwi8NFPw@mail.gmail.com>
On 06/25/2014 08:12 PM, Simon Glass wrote:
> Hi Stephen,
>
> On 25 June 2014 10:57, Stephen Warren <swarren@wwwdotorg.org> wrote:
>>
>> From: Stephen Warren <swarren@nvidia.com>
>>
>> I2C read transactions are typically implemented as follows:
>>
>> START(write) address REPEATED_START(read) data... STOP
>>
>> However, Tegra's I2C driver currently implements reads as follows:
>>
>> START(write) address STOP START(read) data... STOP
>>
>> This sequence confuses at least the AS3722 PMIC on the Jetson TK1 board,
>> leading to corrupted read data in some cases. Fix the driver to chain
>> the transactions together using repeated starts to solve this.
>> diff --git a/drivers/i2c/tegra_i2c.c b/drivers/i2c/tegra_i2c.c
>> @@ -209,7 +212,8 @@ static int send_recv_packets(struct i2c_bus *i2c_bus,
>> int_status = readl(&control->int_status);
>> writel(int_status, &control->int_status);
>>
>> - send_packet_headers(i2c_bus, trans, 1);
>> + send_packet_headers(i2c_bus, trans, 1,
>> + trans->flags & I2C_USE_REPEATED_START);
>
> I'm not sure if it is safe/advisable to pass this value to a bool
> type. Perhaps the function parameter should be int? My understanding
> of bool is that it is supposed to be 0 or 1, but I'm happy to be
> corrected.
I believe that the "promotion" from int to bool clamps the range to 0 or
1. I've certainly seen compilers warn that this promotion might be a
performance issue!. If not, I can always add !! in front.
next prev parent reply other threads:[~2014-06-26 4:09 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-06-25 16:57 [U-Boot] [PATCH 1/3] i2c: tegra: use repeated start for reads Stephen Warren
2014-06-25 16:57 ` [U-Boot] [PATCH 2/3] i2c: tegra: write clean data to TX FIFO Stephen Warren
2014-06-25 23:37 ` Yen Lin
2014-06-25 23:42 ` Yen Lin
2014-06-25 16:57 ` [U-Boot] [PATCH 3/3] i2c: tegra: dump alen in debug statements Stephen Warren
2014-06-25 23:40 ` Yen Lin
2014-06-25 23:36 ` [U-Boot] [PATCH 1/3] i2c: tegra: use repeated start for reads Yen Lin
2014-06-26 2:12 ` Simon Glass
2014-06-26 4:09 ` Stephen Warren [this message]
2014-06-26 8:11 ` Joakim Tjernlund
2014-06-26 16:47 ` Stephen Warren
2014-06-26 19:11 ` Joakim Tjernlund
2014-06-26 19:18 ` Stephen Warren
2014-06-26 19:24 ` Stephen Warren
2014-06-26 20:01 ` Joakim Tjernlund
2014-06-26 22:54 ` Stephen Warren
2014-06-26 19:40 ` Joakim Tjernlund
2014-07-02 18:37 ` Stephen Warren
2014-07-03 4:34 ` Heiko Schocher
2014-07-21 15:14 ` Stephen Warren
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=53AB9CE7.80101@wwwdotorg.org \
--to=swarren@wwwdotorg.org \
--cc=u-boot@lists.denx.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox