From: Jean Delvare <jdelvare@suse.de>
To: Paul Menzel <pmenzel@molgen.mpg.de>
Cc: linux-i2c@vger.kernel.org
Subject: Re: Read CPDL firmware version on Edgecore AS5114-48X
Date: Sat, 24 Jun 2023 13:32:14 +0200 [thread overview]
Message-ID: <20230624133214.48015fb6@endymion.delvare> (raw)
In-Reply-To: <688ccf73-1205-6ee6-d8e5-5b18c8abd9c7@molgen.mpg.de>
Hi Paul,
On Wed, 21 Jun 2023 09:59:44 +0200, Paul Menzel wrote:
> I am trying to read the CPDL firmware version of the switch Edgecore
> AS5114-48X with dentOS (Debian based).
>
> In U-Boot it supposedly work like below:
>
> Marvell>> i2c dev 2
> Marvell>> i2c md 0x40 01 1
> 0001: 01
> Marvell>> i2c md 0x40 ff 1
> 00ff: 03
>
> But I like to do it with GNU/Linux, but my attempts failed:
>
> ```
> # i2cdetect -y 2
> 0 1 2 3 4 5 6 7 8 9 a b c d e f
> 00: -- -- -- -- -- -- -- -- -- -- -- -- --
> 10: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
> 20: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
> 30: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
> 40: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
> 50: UU UU -- -- -- -- -- -- -- -- -- -- -- -- -- --
> 60: -- -- -- -- -- -- -- -- -- -- 6a -- -- -- -- --
> 70: -- UU UU UU UU UU UU --
> ```
>
> Nothing seems to be at address 0x40:
>
> ```
> # i2cdump -f -y 2 0x40
> No size specified (using byte-data access)
> 0 1 2 3 4 5 6 7 8 9 a b c d e f 0123456789abcdef
> 00: XX XX XX XX XX XX XX XX XX XX XX XX XX XX XX XX XXXXXXXXXXXXXXXX
> (...)
> f0: XX XX XX XX XX XX XX XX XX XX XX XX XX XX XX XX XXXXXXXXXXXXXXXX
> ```
>
> Could the bus be different?
Yes, unlike the PCI bus which has a well defined topology, multiple I2C
root segments can coexist in a system and their numbering is largely
arbitrary. So there's no guarantee that i2c bus 2 on U-Boot is the same
as i2c bus 2 on Linux.
I'm not familiar with U-Boot but you may try "i2c dev" or "i2c bus"
commands there, maybe it will tell you what corresponds to i2c bus 2.
> (...)
> # find / -iname *cpld*
> /sys/bus/i2c/drivers/as4224_cpld
> (...)
> # ls -l /sys/bus/i2c/drivers/as4224_cpld/
> total 0
> lrwxrwxrwx 1 root root 0 Jun 20 16:53 0-0040 ->
> ../../../../devices/platform/ap806/ap806:config-space@f0000000/f0511000.i2c/i2c-0/0-0040
> --w------- 1 root root 4096 Jun 20 16:53 bind
> lrwxrwxrwx 1 root root 0 Jun 20 16:53 module ->
> ../../../../module/arm64_accton_as4224_cpld
> --w------- 1 root root 4096 May 16 10:21 uevent
> --w------- 1 root root 4096 Jun 20 16:53 unbind
> ```
>
> Is it bus 0?
Seems so, yes.
>
> ```
> # i2cdump -f -y 0 0x40
> No size specified (using byte-data access)
> 0 1 2 3 4 5 6 7 8 9 a b c d e f 0123456789abcdef
> 00: 80 01 ff 07 0f cc cc cc cc cc cc cc cc cc cc cc ??.?????????????
> 10: ff 03 3f cc 01 cc cc cc cc cc cc cc cc cc cc cc .???????????????
> 20: ff cc cc cc cc cc cc cc cc cc cc cc cc cc cc cc .???????????????
> 30: ff ff ff ff cc cc cc cc cc cc cc cc cc cc cc cc ....????????????
> 40: cc cc cc 0e cc cc cc cc cc cc cc cc cc cc cc cc ????????????????
> 50: 0d 4a 03 00 7f cc cc cc cc cc cc cc cc cc cc cc ?J?.????????????
> 60: 01 71 1e cc cc cc cc cc cc cc cc cc cc cc cc cc ?q??????????????
> 70: 7f 7f 7f 7f 7f cc cc cc cc cc cc cc cc cc cc cc ????????????????
> 80: 6c 69 69 69 68 cc cc cc cc cc cc cc cc cc cc cc liiih???????????
> 90: 02 00 71 71 cc cc cc cc cc cc cc cc cc cc cc cc ?.qq????????????
> a0: ff ff ff ff ff ff ff ff ff ff ff 7f cc cc cc cc ...........?????
> b0: ff ff ff ff ff ff 00 00 00 00 00 00 cc cc cc cc ............????
> c0: 0f fe ff ff ff 3f 00 00 00 00 00 00 cc cc cc cc ??...?......????
> d0: cc cc cc cc cc cc cc cc cc cc cc cc cc cc cc cc ????????????????
> e0: 00 71 cc cc cc cc cc cc cc cc cc cc cc cc cc cc .q??????????????
> f0: 41 53 35 31 31 34 00 00 00 00 00 00 41 57 53 05 AS5114......AWS?
> ```
>
> What would be the values of `0x40 01 1` and ` 0x40 ff 1`?
As I understand the U-Boot i2c command syntax, 0x40 is the slave
address, 01/ff is the register offset (in hexadecimal, despite no
leading "0x") and 1 is the register count. So the equivalent Linux
i2c-tools commands, assuming i2c bus 0, would be:
# i2cget 0 0x40 0x01 b
# i2cget 0 0x40 0xff b
From the full register dump above, these commands will most probably
return values (0x)01 and (0x)05, respectively. The former matches what
you got from U-Boot, the latter doesn't. Which may or may not indicate
a problem, depending on whether these values are supposed to be static
or if they could change over time.
Hope that helps,
--
Jean Delvare
SUSE L3 Support
next prev parent reply other threads:[~2023-06-24 11:33 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-06-21 7:59 Read CPDL firmware version on Edgecore AS5114-48X Paul Menzel
2023-06-24 11:32 ` Jean Delvare [this message]
2023-07-14 10:57 ` Read CPLD " Paul Menzel
2023-07-18 7:05 ` Jean Delvare
2023-07-18 7:10 ` Paul Menzel
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=20230624133214.48015fb6@endymion.delvare \
--to=jdelvare@suse.de \
--cc=linux-i2c@vger.kernel.org \
--cc=pmenzel@molgen.mpg.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