linux-i3c.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] i3c: master: dw-i3c-master: fix i3c_attach/reatach
@ 2019-01-09 14:58 Vitor Soares
  2019-01-09 17:48 ` Boris Brezillon
  0 siblings, 1 reply; 3+ messages in thread
From: Vitor Soares @ 2019-01-09 14:58 UTC (permalink / raw)
  To: linux-i3c; +Cc: joao.pinto, Vitor Soares, bbrezillon

This patch fix i3c attach/reatach functions.

During the i3c_attach the driver doesn't threat the static address used for
SETDASA CCC command.

During the i3c_reatach the driver doesn't update master->addrs[data->index] with
new address if old_dyn_addr = 0.

Signed-off-by: Vitor Soares <vitor.soares@synopsys.com>
---
 drivers/i3c/master/dw-i3c-master.c | 7 ++-----
 1 file changed, 2 insertions(+), 5 deletions(-)

diff --git a/drivers/i3c/master/dw-i3c-master.c b/drivers/i3c/master/dw-i3c-master.c
index b532e2c..b84acbc 100644
--- a/drivers/i3c/master/dw-i3c-master.c
+++ b/drivers/i3c/master/dw-i3c-master.c
@@ -901,9 +901,6 @@ static int dw_i3c_master_reattach_i3c_dev(struct i3c_dev_desc *dev,
 	       master->regs +
 	       DEV_ADDR_TABLE_LOC(master->datstartaddr, data->index));
 
-	if (!old_dyn_addr)
-		return 0;
-
 	master->addrs[data->index] = dev->info.dyn_addr;
 
 	return 0;
@@ -925,11 +922,11 @@ static int dw_i3c_master_attach_i3c_dev(struct i3c_dev_desc *dev)
 		return -ENOMEM;
 
 	data->index = pos;
-	master->addrs[pos] = dev->info.dyn_addr;
+	master->addrs[pos] = dev->info.dyn_addr ?: dev->info.static_addr;
 	master->free_pos &= ~BIT(pos);
 	i3c_dev_set_master_data(dev, data);
 
-	writel(DEV_ADDR_TABLE_DYNAMIC_ADDR(dev->info.dyn_addr),
+	writel(DEV_ADDR_TABLE_DYNAMIC_ADDR(master->addrs[pos]),
 	       master->regs +
 	       DEV_ADDR_TABLE_LOC(master->datstartaddr, data->index));
 
-- 
2.7.4


_______________________________________________
linux-i3c mailing list
linux-i3c@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-i3c

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

* Re: [PATCH] i3c: master: dw-i3c-master: fix i3c_attach/reatach
  2019-01-09 14:58 [PATCH] i3c: master: dw-i3c-master: fix i3c_attach/reatach Vitor Soares
@ 2019-01-09 17:48 ` Boris Brezillon
  2019-01-10 15:16   ` vitor
  0 siblings, 1 reply; 3+ messages in thread
From: Boris Brezillon @ 2019-01-09 17:48 UTC (permalink / raw)
  To: Vitor Soares; +Cc: linux-i3c, joao.pinto

On Wed,  9 Jan 2019 15:58:05 +0100
Vitor Soares <vitor.soares@synopsys.com> wrote:

> This patch fix i3c attach/reatach functions.
> 
> During the i3c_attach the driver doesn't threat the static address used for

					   ^treat?

> SETDASA CCC command.

Or maybe

"
During the i3c_attach the driver *ignores* the static address used for ...
"

> 
> During the i3c_reatach the driver doesn't update master->addrs[data->index] with

		 ^reattach

> new address if old_dyn_addr = 0.
> 

Missing Fixes tag here:

Fixes: 1dd728f5d4d4 ("i3c: master: Add driver for Synopsys DesignWare IP")

> Signed-off-by: Vitor Soares <vitor.soares@synopsys.com>
> ---
>  drivers/i3c/master/dw-i3c-master.c | 7 ++-----
>  1 file changed, 2 insertions(+), 5 deletions(-)
> 
> diff --git a/drivers/i3c/master/dw-i3c-master.c b/drivers/i3c/master/dw-i3c-master.c
> index b532e2c..b84acbc 100644
> --- a/drivers/i3c/master/dw-i3c-master.c
> +++ b/drivers/i3c/master/dw-i3c-master.c
> @@ -901,9 +901,6 @@ static int dw_i3c_master_reattach_i3c_dev(struct i3c_dev_desc *dev,
>  	       master->regs +
>  	       DEV_ADDR_TABLE_LOC(master->datstartaddr, data->index));
>  
> -	if (!old_dyn_addr)
> -		return 0;
> -
>  	master->addrs[data->index] = dev->info.dyn_addr;
>  
>  	return 0;
> @@ -925,11 +922,11 @@ static int dw_i3c_master_attach_i3c_dev(struct i3c_dev_desc *dev)
>  		return -ENOMEM;
>  
>  	data->index = pos;
> -	master->addrs[pos] = dev->info.dyn_addr;
> +	master->addrs[pos] = dev->info.dyn_addr ?: dev->info.static_addr;

						^ add a space between '?' and ':'

>  	master->free_pos &= ~BIT(pos);
>  	i3c_dev_set_master_data(dev, data);
>  
> -	writel(DEV_ADDR_TABLE_DYNAMIC_ADDR(dev->info.dyn_addr),
> +	writel(DEV_ADDR_TABLE_DYNAMIC_ADDR(master->addrs[pos]),
>  	       master->regs +
>  	       DEV_ADDR_TABLE_LOC(master->datstartaddr, data->index));
>  


_______________________________________________
linux-i3c mailing list
linux-i3c@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-i3c

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

* Re: [PATCH] i3c: master: dw-i3c-master: fix i3c_attach/reatach
  2019-01-09 17:48 ` Boris Brezillon
@ 2019-01-10 15:16   ` vitor
  0 siblings, 0 replies; 3+ messages in thread
From: vitor @ 2019-01-10 15:16 UTC (permalink / raw)
  To: Boris Brezillon, Vitor Soares; +Cc: linux-i3c, joao.pinto

Hi Boris,

On 09/01/19 17:48, Boris Brezillon wrote:
> On Wed,  9 Jan 2019 15:58:05 +0100
> Vitor Soares <vitor.soares@synopsys.com> wrote:
>
>> This patch fix i3c attach/reatach functions.
>>
>> During the i3c_attach the driver doesn't threat the static address used for
> 					   ^treat?
>
>> SETDASA CCC command.
> Or maybe
>
> "
> During the i3c_attach the driver *ignores* the static address used for ...
> "
>
>> During the i3c_reatach the driver doesn't update master->addrs[data->index] with
> 		 ^reattach
>
>> new address if old_dyn_addr = 0.
>>
> Missing Fixes tag here:
>
> Fixes: 1dd728f5d4d4 ("i3c: master: Add driver for Synopsys DesignWare IP")
>
>> Signed-off-by: Vitor Soares <vitor.soares@synopsys.com>
>> ---
>>  drivers/i3c/master/dw-i3c-master.c | 7 ++-----
>>  1 file changed, 2 insertions(+), 5 deletions(-)
>>
>> diff --git a/drivers/i3c/master/dw-i3c-master.c b/drivers/i3c/master/dw-i3c-master.c
>> index b532e2c..b84acbc 100644
>> --- a/drivers/i3c/master/dw-i3c-master.c
>> +++ b/drivers/i3c/master/dw-i3c-master.c
>> @@ -901,9 +901,6 @@ static int dw_i3c_master_reattach_i3c_dev(struct i3c_dev_desc *dev,
>>  	       master->regs +
>>  	       DEV_ADDR_TABLE_LOC(master->datstartaddr, data->index));
>>  
>> -	if (!old_dyn_addr)
>> -		return 0;
>> -
>>  	master->addrs[data->index] = dev->info.dyn_addr;
>>  
>>  	return 0;
>> @@ -925,11 +922,11 @@ static int dw_i3c_master_attach_i3c_dev(struct i3c_dev_desc *dev)
>>  		return -ENOMEM;
>>  
>>  	data->index = pos;
>> -	master->addrs[pos] = dev->info.dyn_addr;
>> +	master->addrs[pos] = dev->info.dyn_addr ?: dev->info.static_addr;
> 						^ add a space between '?' and ':'
>
>>  	master->free_pos &= ~BIT(pos);
>>  	i3c_dev_set_master_data(dev, data);
>>  
>> -	writel(DEV_ADDR_TABLE_DYNAMIC_ADDR(dev->info.dyn_addr),
>> +	writel(DEV_ADDR_TABLE_DYNAMIC_ADDR(master->addrs[pos]),
>>  	       master->regs +
>>  	       DEV_ADDR_TABLE_LOC(master->datstartaddr, data->index));
>>  

Thanks for your feedback. I will fix it and resend.

Best regards,
Vitor Soares

_______________________________________________
linux-i3c mailing list
linux-i3c@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-i3c

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

end of thread, other threads:[~2019-01-10 15:16 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-01-09 14:58 [PATCH] i3c: master: dw-i3c-master: fix i3c_attach/reatach Vitor Soares
2019-01-09 17:48 ` Boris Brezillon
2019-01-10 15:16   ` vitor

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).