Skip to content

Commit 8907bfd

Browse files
committed
Merge tag 'i2c-for-6.6-rc8' of git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux
Pull i2c fixes from Wolfram Sang: "Bugfixes for Axxia when it is a target and for PEC handling of stm32f7. Plus, fix an OF node leak pattern in the mux subsystem" * tag 'i2c-for-6.6-rc8' of git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux: i2c: stm32f7: Fix PEC handling in case of SMBUS transfers i2c: muxes: i2c-mux-gpmux: Use of_get_i2c_adapter_by_node() i2c: muxes: i2c-demux-pinctrl: Use of_get_i2c_adapter_by_node() i2c: muxes: i2c-mux-pinctrl: Use of_get_i2c_adapter_by_node() i2c: aspeed: Fix i2c bus hang in slave read
2 parents 67d4c87 + c896ff2 commit 8907bfd

File tree

5 files changed

+11
-7
lines changed

5 files changed

+11
-7
lines changed

drivers/i2c/busses/i2c-aspeed.c

+2-1
Original file line numberDiff line numberDiff line change
@@ -749,6 +749,8 @@ static void __aspeed_i2c_reg_slave(struct aspeed_i2c_bus *bus, u16 slave_addr)
749749
func_ctrl_reg_val = readl(bus->base + ASPEED_I2C_FUN_CTRL_REG);
750750
func_ctrl_reg_val |= ASPEED_I2CD_SLAVE_EN;
751751
writel(func_ctrl_reg_val, bus->base + ASPEED_I2C_FUN_CTRL_REG);
752+
753+
bus->slave_state = ASPEED_I2C_SLAVE_INACTIVE;
752754
}
753755

754756
static int aspeed_i2c_reg_slave(struct i2c_client *client)
@@ -765,7 +767,6 @@ static int aspeed_i2c_reg_slave(struct i2c_client *client)
765767
__aspeed_i2c_reg_slave(bus, client->addr);
766768

767769
bus->slave = client;
768-
bus->slave_state = ASPEED_I2C_SLAVE_INACTIVE;
769770
spin_unlock_irqrestore(&bus->lock, flags);
770771

771772
return 0;

drivers/i2c/busses/i2c-stm32f7.c

+6-3
Original file line numberDiff line numberDiff line change
@@ -1059,9 +1059,10 @@ static int stm32f7_i2c_smbus_xfer_msg(struct stm32f7_i2c_dev *i2c_dev,
10591059
/* Configure PEC */
10601060
if ((flags & I2C_CLIENT_PEC) && f7_msg->size != I2C_SMBUS_QUICK) {
10611061
cr1 |= STM32F7_I2C_CR1_PECEN;
1062-
cr2 |= STM32F7_I2C_CR2_PECBYTE;
1063-
if (!f7_msg->read_write)
1062+
if (!f7_msg->read_write) {
1063+
cr2 |= STM32F7_I2C_CR2_PECBYTE;
10641064
f7_msg->count++;
1065+
}
10651066
} else {
10661067
cr1 &= ~STM32F7_I2C_CR1_PECEN;
10671068
cr2 &= ~STM32F7_I2C_CR2_PECBYTE;
@@ -1149,8 +1150,10 @@ static void stm32f7_i2c_smbus_rep_start(struct stm32f7_i2c_dev *i2c_dev)
11491150
f7_msg->stop = true;
11501151

11511152
/* Add one byte for PEC if needed */
1152-
if (cr1 & STM32F7_I2C_CR1_PECEN)
1153+
if (cr1 & STM32F7_I2C_CR1_PECEN) {
1154+
cr2 |= STM32F7_I2C_CR2_PECBYTE;
11531155
f7_msg->count++;
1156+
}
11541157

11551158
/* Set number of bytes to be transferred */
11561159
cr2 &= ~(STM32F7_I2C_CR2_NBYTES_MASK);

drivers/i2c/muxes/i2c-demux-pinctrl.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ static int i2c_demux_activate_master(struct i2c_demux_pinctrl_priv *priv, u32 ne
6161
if (ret)
6262
goto err;
6363

64-
adap = of_find_i2c_adapter_by_node(priv->chan[new_chan].parent_np);
64+
adap = of_get_i2c_adapter_by_node(priv->chan[new_chan].parent_np);
6565
if (!adap) {
6666
ret = -ENODEV;
6767
goto err_with_revert;

drivers/i2c/muxes/i2c-mux-gpmux.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ static struct i2c_adapter *mux_parent_adapter(struct device *dev)
5252
dev_err(dev, "Cannot parse i2c-parent\n");
5353
return ERR_PTR(-ENODEV);
5454
}
55-
parent = of_find_i2c_adapter_by_node(parent_np);
55+
parent = of_get_i2c_adapter_by_node(parent_np);
5656
of_node_put(parent_np);
5757
if (!parent)
5858
return ERR_PTR(-EPROBE_DEFER);

drivers/i2c/muxes/i2c-mux-pinctrl.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ static struct i2c_adapter *i2c_mux_pinctrl_parent_adapter(struct device *dev)
6262
dev_err(dev, "Cannot parse i2c-parent\n");
6363
return ERR_PTR(-ENODEV);
6464
}
65-
parent = of_find_i2c_adapter_by_node(parent_np);
65+
parent = of_get_i2c_adapter_by_node(parent_np);
6666
of_node_put(parent_np);
6767
if (!parent)
6868
return ERR_PTR(-EPROBE_DEFER);

0 commit comments

Comments
 (0)