mail archive of the barebox mailing list
 help / color / mirror / Atom feed
From: Martin Hollingsworth <Martin.Hollingsworth@itk-engineering.de>
To: "barebox@lists.infradead.org" <barebox@lists.infradead.org>
Subject: i2c_read_reg on phytec-som-am335x returns wrong data from EEPROM
Date: Wed, 2 Aug 2017 15:48:53 +0000	[thread overview]
Message-ID: <23913c556f6e4adcadbac2190f2a3409@itk-engineering.de> (raw)

Hello folks,
I am having trouble reading from the 4k EEPROM via I2C on the phytec-som-am335x board. What I want to achieve is, that the code in board.c reads a value from EEPROM, evaluates it and then adds the value as globalvar to the userland for scripting. However if I read the data using the function from below, the i2c_read_reg() returns with SUCCESS but the data read to the buffer is incorrect. I use the following snippet of code to read the data within the physom_devices_init() function within the board.c file.

------------
struct i2c_adapter *adapter = i2c_get_adapter(0);
if(adapter)
{
    struct i2c_client client;
    client.adapter = adapter;
    client.addr = 0x52;
	char buff[32] = {0xFF};
    if(i2c_read_reg(&client, 0xFE0, buff, sizeof(buff)) > 0)
    {
		for( ii = 0; ii < 32; ii++ )
		{
			printf( "%02X", buff[ii] );
		}
	[...]
------------

If I compare the EEPROM access in barebox userland, I see similar problems. All access to the EEPROM via I2C commands only work correct, if I set the "-w" (use 16bit word access) flag. In all cases the i2c_read or i2c_write functions return 0 (success) but the read or write was not executed correctly. See the example, where both reads should return the same data:

------------
barebox@Phytec phyCORE AM335x:/ i2c_read -b 0 -a 0x52 -r 0xFE0 -c 32 -w 
0xaa 0xff 0xaa 0xff [...] --> OK, DATA is correct
barebox@Phytec phyCORE AM335x:/ i2c_read -b 0 -a 0x52 -r 0xFE0 -c 32
0xf3 0xfd 0x54 0x23 [...] --> RETURNVALUE = 0 (SUCCESS), BUT READ DATA IS WRONG
------------

However if I access the EEPROM using the device definition /dev/eeprom0, as provided by the DTSI file, the usual memory commands in userland - like memset, mw and md - all work just fine.

What am I overlooking here? How do I configure i2c_read_reg() in C-Code to do WORD access to the EEPROM?

Any suggestion would be appreciated.
Regards, Martin

_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

             reply	other threads:[~2017-08-02 15:49 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-08-02 15:48 Martin Hollingsworth [this message]
2017-08-02 16:37 ` Ian Abbott

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=23913c556f6e4adcadbac2190f2a3409@itk-engineering.de \
    --to=martin.hollingsworth@itk-engineering.de \
    --cc=barebox@lists.infradead.org \
    /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