[PATCH] mfd: da9061: Fix Failed to set Two-Wire Bus Mode.

Jens Hillenstedt posted 1 patch 3 years, 6 months ago
drivers/mfd/da9062-core.c | 1 +
1 file changed, 1 insertion(+)
[PATCH] mfd: da9061: Fix Failed to set Two-Wire Bus Mode.
Posted by Jens Hillenstedt 3 years, 6 months ago
In da9062_i2c_probe() regmap_clear_bits() tries to access CONFIG_J
register. As CONFIG_J is not present in da9061_aa_writeable_ranges[] probe
of da9061 fails:

  da9062 2-0058: Entering I2C mode!
  da9062 2-0058: Failed to set Two-Wire Bus Mode.
  da9062: probe of 2-0058 failed with error -5

Add CONFIG_J register to da9061_aa_writeable_ranges[].

Fixes: 5c6f0f456351 ("mfd: da9062: Support SMBus and I2C mode")
Signed-off-by: Jens Hillenstedt <jens.hillenstedt@ise.de>
---
 drivers/mfd/da9062-core.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/mfd/da9062-core.c b/drivers/mfd/da9062-core.c
index 2774b2cbaea6..c2acdbcd5d6b 100644
--- a/drivers/mfd/da9062-core.c
+++ b/drivers/mfd/da9062-core.c
@@ -453,6 +453,7 @@ static const struct regmap_range da9061_aa_writeable_ranges[] = {
 	regmap_reg_range(DA9062AA_VBUCK1_B, DA9062AA_VBUCK4_B),
 	regmap_reg_range(DA9062AA_VBUCK3_B, DA9062AA_VBUCK3_B),
 	regmap_reg_range(DA9062AA_VLDO1_B, DA9062AA_VLDO4_B),
+	regmap_reg_range(DA9062AA_CONFIG_J, DA9062AA_CONFIG_J),
 	regmap_reg_range(DA9062AA_GP_ID_0, DA9062AA_GP_ID_19),
 };
 
-- 
2.30.2
Re: [PATCH] mfd: da9061: Fix Failed to set Two-Wire Bus Mode.
Posted by Lee Jones 3 years, 6 months ago
On Thu, 15 Sep 2022, Jens Hillenstedt wrote:

> In da9062_i2c_probe() regmap_clear_bits() tries to access CONFIG_J
> register. As CONFIG_J is not present in da9061_aa_writeable_ranges[] probe
> of da9061 fails:
> 
>   da9062 2-0058: Entering I2C mode!
>   da9062 2-0058: Failed to set Two-Wire Bus Mode.
>   da9062: probe of 2-0058 failed with error -5
> 
> Add CONFIG_J register to da9061_aa_writeable_ranges[].
> 
> Fixes: 5c6f0f456351 ("mfd: da9062: Support SMBus and I2C mode")
> Signed-off-by: Jens Hillenstedt <jens.hillenstedt@ise.de>
> ---
>  drivers/mfd/da9062-core.c | 1 +
>  1 file changed, 1 insertion(+)

Applied, thanks.

-- 
Lee Jones [李琼斯]
RE: [PATCH] mfd: da9061: Fix Failed to set Two-Wire Bus Mode.
Posted by DLG Adam Ward 3 years, 6 months ago
On 15 September 2022 10:20 Jens Hillenstedt wrote:
>In da9062_i2c_probe() regmap_clear_bits() tries to access CONFIG_J register. As CONFIG_J is not present in da9061_aa_writeable_ranges[] probe of da9061 fails:

Thanks!
Reviewed-by: Adam Ward <DLG-Adam.Ward.opensource@dm.renesas.com>