From: William Wu Date: Thu, 14 Mar 2024 09:36:16 +0000 (+0100) Subject: regulator: rk8xx: fix SWITCH enable on RK809 X-Git-Url: http://git.dujemihanovic.xyz/html/index.html?a=commitdiff_plain;h=d771597fbbade5c45ca6e0956ec3120b2d9bdce0;p=u-boot.git regulator: rk8xx: fix SWITCH enable on RK809 On RK809 in PMIC_POWER_ENX registers, in order to set or clear a bit N, the bit at offset N + 4 needs to be set otherwise nothing is done. This fixes the inability to modify the SWITCH state on RK809. Cc: Quentin Schulz Signed-off-by: William Wu [reworded commit log] Reviewed-by: Kever Yang Signed-off-by: Quentin Schulz --- diff --git a/drivers/power/regulator/rk8xx.c b/drivers/power/regulator/rk8xx.c index 97d73ac95e..e905df3a80 100644 --- a/drivers/power/regulator/rk8xx.c +++ b/drivers/power/regulator/rk8xx.c @@ -901,7 +901,7 @@ static int switch_set_enable(struct udevice *dev, bool enable) case RK809_ID: mask = (1 << (sw + 2)) | (1 << (sw + 6)); ret = pmic_clrsetbits(dev->parent, RK817_POWER_EN(3), mask, - enable ? mask : 0); + enable ? mask : (1 << (sw + 6))); break; case RK818_ID: mask = 1 << 6;