From: Aaron Sierra <asierra@xes-inc.com>
To: Wolfram Sang <wsa@the-dreams.de>
Cc: Jean Delvare <jdelvare@suse.de>,
linux-i2c@vger.kernel.org,
Christian Gmeiner <christian.gmeiner@gmail.com>,
Nate Case <ncase@xes-inc.com>
Subject: Re: [PATCH v6] at24: Support SMBus read/write of 16-bit devices
Date: Fri, 18 Dec 2015 13:47:50 -0600 (CST) [thread overview]
Message-ID: <1758302572.65470.1450468070959.JavaMail.zimbra@xes-inc.com> (raw)
In-Reply-To: <20151211131939.GC2742@katana>
----- Original Message -----
> From: "Wolfram Sang" <wsa@the-dreams.de>
> Sent: Friday, December 11, 2015 7:19:40 AM
>
> On Mon, Nov 16, 2015 at 06:02:19PM -0600, Aaron Sierra wrote:
> > Previously, the at24 driver would bail out in the case of a 16-bit
> > addressable EEPROM attached to an SMBus controller. This is because
> > SMBus block reads and writes don't map to I2C multi-byte reads and
> > writes when the offset portion is 2 bytes.
> >
> > Instead of bailing out, this patch settles for functioning with single
> > byte read SMBus cycles. Writes can be block or single-byte, depending
> > on SMBus controller features.
> >
> > Read access is not without some risk. Multiple SMBus cycles are
> > required to read even one byte. If the SMBus has multiple masters and
> > one accesses this EEPROM between the dummy address write and the
> > subsequent current-address-read cycle(s), this driver will receive
> > data from the wrong address.
> >
> > Functionality has been tested with the following devices:
> >
> > AT24CM01 attached to Intel ISCH SMBus
> > AT24C512 attached to Intel I801 SMBus
> >
> > Read performance:
> > 3.6 KB/s with 32-byte* access
> >
> > *limited to 32-bytes by I2C_SMBUS_BLOCK_MAX.
> >
> > Write performance:
> > 248 B/s with 1-byte page (default)
> > 3.9 KB/s with 128-byte* page (via platform data)
> >
> > *limited to 31-bytes by I2C_SMBUS_BLOCK_MAX - 1.
> >
> > Signed-off-by: Nate Case <ncase@xes-inc.com>
> > Signed-off-by: Aaron Sierra <asierra@xes-inc.com>
> > Reviewed-by: Jean Delvare <jdelvare@suse.de>
> > ---
> > v2 - Account for changes related to introduction of
> > i2c_smbus_read_i2c_block_data_or_emulated()
> > v3 - Consolidate three patches into one
> > - Expand comments regarding SMBus multi-master read risks.
> > - Rely on current-address-read for improved read performance (i.e. one
> > dummy address write followed by multiple individual byte reads).
> > This improves performance from 1.4 KiB/s to 3.6 KiB/s.
> > - Use struct at24_data's writebuf instead of kzalloc-ing
> > - Only limit write_max by 1-byte when accessing a 16-bit device with
> > block writes instead of attempting to preserve a power-of-two.
> > - Style fixes (indentation, parentheses, unnecessary masking, etc.)
> > v4 - Address 16-bit safety in Kconfig
> > - Set "count" to zero later in at24_smbus_read_block_data()
> > - Fix over-80-columns issues in at24_eeprom_read()
> > - Fix write_max off-by-one in at24_probe()
> > - Check SMBus functionality needed for 16-bit device reads
> > - Homogenize indentation of SMBus functionality checks for SMBus write
> > v5 - 16-bit device read needs READ_BYTE not READ_BYTE_DATA
> > - Clarify write_max limiting with smbus_max
> > - Add X-ES copyright
> > v6 - Update comment associated with SMBus functionality testing for 16-bit
> > device read (READ_BYTE not READ_BYTE_DATA)
> >
> > drivers/misc/eeprom/Kconfig | 5 +-
> > drivers/misc/eeprom/at24.c | 132
> > +++++++++++++++++++++++++++++++++++++++-----
> > 2 files changed, 122 insertions(+), 15 deletions(-)
>
> I remember I had a lengthy discussion with Guenter Roeck about 16 bit
> support via smbus. I don't have the bandwidth right now to recap the
> discussion and check if the concerns apply to your implementation as
> well. Could you check this thread
>
> https://lkml.org/lkml/2015/2/4/436
>
> and report back if it applies to your patch as well? This would speed up
> the review significantly.
Wolfram,
The real bus-level multi-master issue is still present. However, it is
documented via comments in the driver and warnings in the Kconfig.
The other (and apparently bigger) issue of a single master experiencing
corruption due to simultaneous access through i2c-dev and this driver
appears to have been resolved. The i2cdump, i2cget, and i2cset utilities
refuse to access any device that has a driver bound to it. My attempts
to cause corruption using i2cdump were met with the following message
until I unregistered the at24 driver from the device:
# i2cdump 8 0x54
No size specified (using byte-data access)
Error: Could not set address to 0x54: Device or resource busy
-Aaron S.
next prev parent reply other threads:[~2015-12-18 19:49 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <1914980865.104978.1447718293775.JavaMail.zimbra@xes-inc.com>
2015-11-17 0:02 ` [PATCH v6] at24: Support SMBus read/write of 16-bit devices Aaron Sierra
2015-11-17 16:52 ` Jean Delvare
2015-12-11 13:19 ` Wolfram Sang
2015-12-18 19:47 ` Aaron Sierra [this message]
2015-12-18 20:53 ` Jean Delvare
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=1758302572.65470.1450468070959.JavaMail.zimbra@xes-inc.com \
--to=asierra@xes-inc.com \
--cc=christian.gmeiner@gmail.com \
--cc=jdelvare@suse.de \
--cc=linux-i2c@vger.kernel.org \
--cc=ncase@xes-inc.com \
--cc=wsa@the-dreams.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;
as well as URLs for NNTP newsgroup(s).