* [PATCH] i2c: aspeed: Consider i2c reset for muti-master case
@ 2024-10-18 3:49 Tommy Huang
2024-10-21 11:49 ` Andrew Jeffery
0 siblings, 1 reply; 4+ messages in thread
From: Tommy Huang @ 2024-10-18 3:49 UTC (permalink / raw)
To: linux-aspeed
In the original code, the device reset would not be triggered
when the driver is set to multi-master and bus is free.
It needs to be considered with multi-master condition.
Fixes: <f327c686d3ba> ("i2c: aspeed: Reset the i2c controller when timeout occurs")
Signed-off-by: Tommy Huang <tommy_huang@aspeedtech.com>
---
drivers/i2c/busses/i2c-aspeed.c | 15 ++++++++-------
1 file changed, 8 insertions(+), 7 deletions(-)
diff --git a/drivers/i2c/busses/i2c-aspeed.c b/drivers/i2c/busses/i2c-aspeed.c
index cc5a26637fd5..7639ae3ace67 100644
--- a/drivers/i2c/busses/i2c-aspeed.c
+++ b/drivers/i2c/busses/i2c-aspeed.c
@@ -716,14 +716,15 @@ static int aspeed_i2c_master_xfer(struct i2c_adapter *adap,
if (time_left == 0) {
/*
* In a multi-master setup, if a timeout occurs, attempt
- * recovery. But if the bus is idle, we still need to reset the
- * i2c controller to clear the remaining interrupts.
+ * recovery device. But if the bus is idle,
+ * we still need to reset the i2c controller to clear
+ * the remaining interrupts or reset device abnormal condition.
*/
- if (bus->multi_master &&
- (readl(bus->base + ASPEED_I2C_CMD_REG) &
- ASPEED_I2CD_BUS_BUSY_STS))
- aspeed_i2c_recover_bus(bus);
- else
+ if ((readl(bus->base + ASPEED_I2C_CMD_REG) &
+ ASPEED_I2CD_BUS_BUSY_STS)){
+ if (bus->multi_master)
+ aspeed_i2c_recover_bus(bus);
+ } else
aspeed_i2c_reset(bus);
/*
--
2.25.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [PATCH] i2c: aspeed: Consider i2c reset for muti-master case
2024-10-18 3:49 [PATCH] i2c: aspeed: Consider i2c reset for muti-master case Tommy Huang
@ 2024-10-21 11:49 ` Andrew Jeffery
[not found] ` <TYZPR06MB6191EBA63B87FE5152AF029DE14C2@TYZPR06MB6191.apcprd06.prod.outlook.com>
0 siblings, 1 reply; 4+ messages in thread
From: Andrew Jeffery @ 2024-10-21 11:49 UTC (permalink / raw)
To: linux-aspeed
Hi Tommy,
On Fri, 2024-10-18 at 11:49 +0800, Tommy Huang wrote:
> In the original code, the device reset would not be triggered
> when the driver is set to multi-master and bus is free.
That's not how I read the existing code. As it stands, if it's multi-
master and busy we do the recovery, however, if it's multi-master and
free, or busy but not multi-master, or free and not multi-master, then
we do the reset.
> It needs to be considered with multi-master condition.
Is there a specific circumstance you've found that's problematic? Can
you provide some more details about that scenario?
>
> Fixes: <f327c686d3ba> ("i2c: aspeed: Reset the i2c controller when timeout occurs")
>
> Signed-off-by: Tommy Huang <tommy_huang@aspeedtech.com>
> ---
> drivers/i2c/busses/i2c-aspeed.c | 15 ++++++++-------
> 1 file changed, 8 insertions(+), 7 deletions(-)
>
> diff --git a/drivers/i2c/busses/i2c-aspeed.c b/drivers/i2c/busses/i2c-aspeed.c
> index cc5a26637fd5..7639ae3ace67 100644
> --- a/drivers/i2c/busses/i2c-aspeed.c
> +++ b/drivers/i2c/busses/i2c-aspeed.c
> @@ -716,14 +716,15 @@ static int aspeed_i2c_master_xfer(struct i2c_adapter *adap,
> if (time_left == 0) {
> /*
> * In a multi-master setup, if a timeout occurs, attempt
> - * recovery. But if the bus is idle, we still need to reset the
> - * i2c controller to clear the remaining interrupts.
> + * recovery device. But if the bus is idle,
> + * we still need to reset the i2c controller to clear
> + * the remaining interrupts or reset device abnormal condition.
> */
> - if (bus->multi_master &&
> - (readl(bus->base + ASPEED_I2C_CMD_REG) &
> - ASPEED_I2CD_BUS_BUSY_STS))
> - aspeed_i2c_recover_bus(bus);
> - else
> + if ((readl(bus->base + ASPEED_I2C_CMD_REG) &
> + ASPEED_I2CD_BUS_BUSY_STS)){
> + if (bus->multi_master)
> + aspeed_i2c_recover_bus(bus);
The change doesn't seem match the commit message. In this case you've
punched a hole - if the bus is busy but _not_ multi-master, we neither
do the reset _nor_ the recovery.
Which is what you intended? The implementation? Or the prose
description?
Now, back to the implementation, punching this hole seems reasonable on
the surface, but I guess we need to keep in mind that time_left has
also expired...
> + } else
> aspeed_i2c_reset(bus);
>
> /*
Andrew
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] i2c: aspeed: Consider i2c reset for muti-master case
[not found] ` <TYZPR06MB6191EBA63B87FE5152AF029DE14C2@TYZPR06MB6191.apcprd06.prod.outlook.com>
@ 2024-10-24 13:22 ` Andi Shyti
2024-10-25 0:39 ` Tommy Huang
0 siblings, 1 reply; 4+ messages in thread
From: Andi Shyti @ 2024-10-24 13:22 UTC (permalink / raw)
To: Tommy Huang
Cc: Andrew Jeffery, brendanhiggins@google.com,
benh@kernel.crashing.org, joel@jms.id.au, BMC-SW,
linux-aspeed@lists.ozlabs.org, openbmc@lists.ozlabs.org,
linux-kernel@vger.kernel.org, stable@vger.kernel.org,
linux-i2c@vger.kernel.org, linux-arm-kernel@lists.infradead.org
Hi Tommy,
On Tue, Oct 22, 2024 at 02:42:08AM +0000, Tommy Huang wrote:
> Hi Andrew,
>
> Thanks for your comments.
> I want to fix the situation when our controller is set as target mode and reading / writing by other i2c host.
> However, this host is stopped by any other reason (DC on/off..etc).
> It will cause the controller is stuck in this situation.
> But I find it might not have clear hints to identify this situation is normal or abnormal.
> So, this patch should not be applied into mainstream.
Please, avoid top posting, I don't understand which part of the
original message you are trying to comment on.
Second thing, please, before sending a patch, always always
always make sure that checkpatch.pl reports '0' errors and '0'
warnings, except for few sporadic cases.
Andi
^ permalink raw reply [flat|nested] 4+ messages in thread
* RE: [PATCH] i2c: aspeed: Consider i2c reset for muti-master case
2024-10-24 13:22 ` Andi Shyti
@ 2024-10-25 0:39 ` Tommy Huang
0 siblings, 0 replies; 4+ messages in thread
From: Tommy Huang @ 2024-10-25 0:39 UTC (permalink / raw)
To: Andi Shyti
Cc: Andrew Jeffery, brendanhiggins@google.com,
benh@kernel.crashing.org, joel@jms.id.au, BMC-SW,
linux-aspeed@lists.ozlabs.org, openbmc@lists.ozlabs.org,
linux-kernel@vger.kernel.org, linux-i2c@vger.kernel.org,
linux-arm-kernel@lists.infradead.org
> -----Original Message-----
> From: Andi Shyti <andi.shyti@kernel.org>
> Sent: Thursday, October 24, 2024 9:23 PM
> To: Tommy Huang <tommy_huang@aspeedtech.com>
> Cc: Andrew Jeffery <andrew@codeconstruct.com.au>;
> brendanhiggins@google.com; benh@kernel.crashing.org; joel@jms.id.au;
> BMC-SW <BMC-SW@aspeedtech.com>; linux-aspeed@lists.ozlabs.org;
> openbmc@lists.ozlabs.org; linux-kernel@vger.kernel.org;
> stable@vger.kernel.org; linux-i2c@vger.kernel.org;
> linux-arm-kernel@lists.infradead.org
> Subject: Re: [PATCH] i2c: aspeed: Consider i2c reset for muti-master case
>
> Hi Tommy,
>
> On Tue, Oct 22, 2024 at 02:42:08AM +0000, Tommy Huang wrote:
> > Hi Andrew,
> >
> > Thanks for your comments.
> > I want to fix the situation when our controller is set as target mode and
> reading / writing by other i2c host.
> > However, this host is stopped by any other reason (DC on/off..etc).
> > It will cause the controller is stuck in this situation.
> > But I find it might not have clear hints to identify this situation is normal
> or abnormal.
> > So, this patch should not be applied into mainstream.
>
> Please, avoid top posting, I don't understand which part of the original
> message you are trying to comment on.
Got it.
> Second thing, please, before sending a patch, always always always make sure
> that checkpatch.pl reports '0' errors and '0'
> warnings, except for few sporadic cases.
Sure. Thanks for your suggestion.
>
> Andi
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2024-10-25 0:40 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-10-18 3:49 [PATCH] i2c: aspeed: Consider i2c reset for muti-master case Tommy Huang
2024-10-21 11:49 ` Andrew Jeffery
[not found] ` <TYZPR06MB6191EBA63B87FE5152AF029DE14C2@TYZPR06MB6191.apcprd06.prod.outlook.com>
2024-10-24 13:22 ` Andi Shyti
2024-10-25 0:39 ` Tommy Huang
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).