Skip to content
This repository was archived by the owner on Oct 31, 2024. It is now read-only.

Commit 88dfb1d

Browse files
TommyHuang0527gregkh
authored andcommitted
i2c: aspeed: Update the stop sw state when the bus recovery occurs
commit 93701d3 upstream. When the i2c bus recovery occurs, driver will send i2c stop command in the scl low condition. In this case the sw state will still keep original situation. Under multi-master usage, i2c bus recovery will be called when i2c transfer timeout occurs. Update the stop command calling with aspeed_i2c_do_stop function to update master_state. Fixes: f327c68 ("i2c: aspeed: added driver for Aspeed I2C") Cc: stable@vger.kernel.org # v4.13+ Signed-off-by: Tommy Huang <tommy_huang@aspeedtech.com> Signed-off-by: Andi Shyti <andi.shyti@kernel.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1 parent b35a42b commit 88dfb1d

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

drivers/i2c/busses/i2c-aspeed.c

+8-8
Original file line numberDiff line numberDiff line change
@@ -170,6 +170,13 @@ struct aspeed_i2c_bus {
170170

171171
static int aspeed_i2c_reset(struct aspeed_i2c_bus *bus);
172172

173+
/* precondition: bus.lock has been acquired. */
174+
static void aspeed_i2c_do_stop(struct aspeed_i2c_bus *bus)
175+
{
176+
bus->master_state = ASPEED_I2C_MASTER_STOP;
177+
writel(ASPEED_I2CD_M_STOP_CMD, bus->base + ASPEED_I2C_CMD_REG);
178+
}
179+
173180
static int aspeed_i2c_recover_bus(struct aspeed_i2c_bus *bus)
174181
{
175182
unsigned long time_left, flags;
@@ -187,7 +194,7 @@ static int aspeed_i2c_recover_bus(struct aspeed_i2c_bus *bus)
187194
command);
188195

189196
reinit_completion(&bus->cmd_complete);
190-
writel(ASPEED_I2CD_M_STOP_CMD, bus->base + ASPEED_I2C_CMD_REG);
197+
aspeed_i2c_do_stop(bus);
191198
spin_unlock_irqrestore(&bus->lock, flags);
192199

193200
time_left = wait_for_completion_timeout(
@@ -390,13 +397,6 @@ static void aspeed_i2c_do_start(struct aspeed_i2c_bus *bus)
390397
writel(command, bus->base + ASPEED_I2C_CMD_REG);
391398
}
392399

393-
/* precondition: bus.lock has been acquired. */
394-
static void aspeed_i2c_do_stop(struct aspeed_i2c_bus *bus)
395-
{
396-
bus->master_state = ASPEED_I2C_MASTER_STOP;
397-
writel(ASPEED_I2CD_M_STOP_CMD, bus->base + ASPEED_I2C_CMD_REG);
398-
}
399-
400400
/* precondition: bus.lock has been acquired. */
401401
static void aspeed_i2c_next_msg_or_stop(struct aspeed_i2c_bus *bus)
402402
{

0 commit comments

Comments
 (0)