All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/1] power: pmic_pca9450: fix PCA9450A I2C address
@ 2020-06-29  8:42 Sébastien Szymanski
  2020-06-29  9:51 ` [EXT] " Ye Li
  0 siblings, 1 reply; 4+ messages in thread
From: Sébastien Szymanski @ 2020-06-29  8:42 UTC (permalink / raw)
  To: u-boot

PCA9450A I2C address is 0x25. Fix it.

Signed-off-by: S?bastien Szymanski <sebastien.szymanski@armadeus.com>
---
 drivers/power/pmic/pmic_pca9450.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/power/pmic/pmic_pca9450.c b/drivers/power/pmic/pmic_pca9450.c
index 67a9090200..c0fb78c4cd 100644
--- a/drivers/power/pmic/pmic_pca9450.c
+++ b/drivers/power/pmic/pmic_pca9450.c
@@ -23,7 +23,7 @@ int power_pca9450a_init(unsigned char bus)
 	p->name = pca9450_name;
 	p->interface = PMIC_I2C;
 	p->number_of_regs = PCA9450_REG_NUM;
-	p->hw.i2c.addr = 0x35;
+	p->hw.i2c.addr = 0x25;
 	p->hw.i2c.tx_num = 1;
 	p->bus = bus;
 
-- 
2.26.2

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [EXT] [PATCH 1/1] power: pmic_pca9450: fix PCA9450A I2C address
  2020-06-29  8:42 [PATCH 1/1] power: pmic_pca9450: fix PCA9450A I2C address Sébastien Szymanski
@ 2020-06-29  9:51 ` Ye Li
  2020-06-29 10:11   ` Sébastien Szymanski
  0 siblings, 1 reply; 4+ messages in thread
From: Ye Li @ 2020-06-29  9:51 UTC (permalink / raw)
  To: u-boot

On Mon, 2020-06-29 at 10:42 +0200, S?bastien Szymanski wrote:
> Caution: EXT Email
> 
> PCA9450A I2C address is 0x25. Fix it.
> 
> Signed-off-by: S?bastien Szymanski <sebastien.szymanski@armadeus.com>
> ---
> ?drivers/power/pmic/pmic_pca9450.c | 2 +-
> ?1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/power/pmic/pmic_pca9450.c
> b/drivers/power/pmic/pmic_pca9450.c
> index 67a9090200..c0fb78c4cd 100644
> --- a/drivers/power/pmic/pmic_pca9450.c
> +++ b/drivers/power/pmic/pmic_pca9450.c
> @@ -23,7 +23,7 @@ int power_pca9450a_init(unsigned char bus)
> ????????p->name = pca9450_name;
> ????????p->interface = PMIC_I2C;
> ????????p->number_of_regs = PCA9450_REG_NUM;
> -???????p->hw.i2c.addr = 0x35;
> +???????p->hw.i2c.addr = 0x25;

The address 0x35 is correct for PCA9540A. You are probably using
PCA9540B/C which address is 0x25. If so, please
call?power_pca9450b_init.

Best regards,
Ye Li
> ????????p->hw.i2c.tx_num = 1;
> ????????p->bus = bus;
> 
> --
> 2.26.2
> 

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [EXT] [PATCH 1/1] power: pmic_pca9450: fix PCA9450A I2C address
  2020-06-29  9:51 ` [EXT] " Ye Li
@ 2020-06-29 10:11   ` Sébastien Szymanski
  2020-06-29 13:45     ` Ye Li
  0 siblings, 1 reply; 4+ messages in thread
From: Sébastien Szymanski @ 2020-06-29 10:11 UTC (permalink / raw)
  To: u-boot

On 6/29/20 11:51 AM, Ye Li wrote:
> On Mon, 2020-06-29 at 10:42 +0200, S?bastien Szymanski wrote:
>> Caution: EXT Email
>>
>> PCA9450A I2C address is 0x25. Fix it.
>>
>> Signed-off-by: S?bastien Szymanski <sebastien.szymanski@armadeus.com>
>> ---
>> ?drivers/power/pmic/pmic_pca9450.c | 2 +-
>> ?1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/drivers/power/pmic/pmic_pca9450.c
>> b/drivers/power/pmic/pmic_pca9450.c
>> index 67a9090200..c0fb78c4cd 100644
>> --- a/drivers/power/pmic/pmic_pca9450.c
>> +++ b/drivers/power/pmic/pmic_pca9450.c
>> @@ -23,7 +23,7 @@ int power_pca9450a_init(unsigned char bus)
>> ????????p->name = pca9450_name;
>> ????????p->interface = PMIC_I2C;
>> ????????p->number_of_regs = PCA9450_REG_NUM;
>> -???????p->hw.i2c.addr = 0x35;
>> +???????p->hw.i2c.addr = 0x25;
> 
> The address 0x35 is correct for PCA9540A. You are probably using
> PCA9540B/C which address is 0x25. If so, please
> call?power_pca9450b_init.

No.
I am using a PCA9450A chip and its address is 0x25:

# i2cget -f -y 0 0x25 0x00
0x10

Moreover, the datasheet says it's 0x25. [1]

[1] https://www.nxp.com/docs/en/data-sheet/PCA9450DS.pdf

Regards,

> 
> Best regards,
> Ye Li
>> ????????p->hw.i2c.tx_num = 1;
>> ????????p->bus = bus;
>>
>> --
>> 2.26.2


-- 
S?bastien Szymanski, Armadeus Systems
Software engineer

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [EXT] [PATCH 1/1] power: pmic_pca9450: fix PCA9450A I2C address
  2020-06-29 10:11   ` Sébastien Szymanski
@ 2020-06-29 13:45     ` Ye Li
  0 siblings, 0 replies; 4+ messages in thread
From: Ye Li @ 2020-06-29 13:45 UTC (permalink / raw)
  To: u-boot

On Mon, 2020-06-29 at 12:11 +0200, S?bastien Szymanski wrote:
> Caution: EXT Email
> 
> On 6/29/20 11:51 AM, Ye Li wrote:
> > 
> > On Mon, 2020-06-29 at 10:42 +0200, S?bastien Szymanski wrote:
> > > 
> > > Caution: EXT Email
> > > 
> > > PCA9450A I2C address is 0x25. Fix it.
> > > 
> > > Signed-off-by: S?bastien Szymanski <sebastien.szymanski@armadeus.
> > > com>
> > > ---
> > > ?drivers/power/pmic/pmic_pca9450.c | 2 +-
> > > ?1 file changed, 1 insertion(+), 1 deletion(-)
> > > 
> > > diff --git a/drivers/power/pmic/pmic_pca9450.c
> > > b/drivers/power/pmic/pmic_pca9450.c
> > > index 67a9090200..c0fb78c4cd 100644
> > > --- a/drivers/power/pmic/pmic_pca9450.c
> > > +++ b/drivers/power/pmic/pmic_pca9450.c
> > > @@ -23,7 +23,7 @@ int power_pca9450a_init(unsigned char bus)
> > > ????????p->name = pca9450_name;
> > > ????????p->interface = PMIC_I2C;
> > > ????????p->number_of_regs = PCA9450_REG_NUM;
> > > -???????p->hw.i2c.addr = 0x35;
> > > +???????p->hw.i2c.addr = 0x25;
> > The address 0x35 is correct for PCA9540A. You are probably using
> > PCA9540B/C which address is 0x25. If so, please
> > call power_pca9450b_init.
> No.
> I am using a PCA9450A chip and its address is 0x25:
> 
> # i2cget -f -y 0 0x25 0x00
> 0x10
> 
> Moreover, the datasheet says it's 0x25. [1]
> 
> [1] https://eur01.safelinks.protection.outlook.com/?url=https%3A%2F%2
> Fwww.nxp.com%2Fdocs%2Fen%2Fdata-
> sheet%2FPCA9450DS.pdf&amp;data=02%7C01%7Cye.li%40nxp.com%7Cf58d2e0f30
> 7045ca2b7408d81c14d040%7C686ea1d3bc2b4c6fa92cd99c5c301635%7C0%7C1%7C6
> 37290222999360806&amp;sdata=cLYNDpYxwFaDrMSq%2B%2F2bivTXw9a8BAkUgTf3%
> 2B5mWcWg%3D&amp;reserved=0
> 
> Regards,

Our doc shows the i2c address has a choice by MTP.?

The I2C address at Power-On Reset is as follows:
? Write address: 0x6A ( MTP Option : 4A )
? Read address: 0x6B ( MTP Option : 4B )


And we also has an 8MM board (not for customer) using PCA9450A with
0x35 address.?

Best regards,
Ye Li
> 
> > 
> > 
> > Best regards,
> > Ye Li
> > > 
> > > ????????p->hw.i2c.tx_num = 1;
> > > ????????p->bus = bus;
> > > 
> > > --
> > > 2.26.2
> 
> --
> S?bastien Szymanski, Armadeus Systems
> Software engineer

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2020-06-29 13:45 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-06-29  8:42 [PATCH 1/1] power: pmic_pca9450: fix PCA9450A I2C address Sébastien Szymanski
2020-06-29  9:51 ` [EXT] " Ye Li
2020-06-29 10:11   ` Sébastien Szymanski
2020-06-29 13:45     ` Ye Li

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.