From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id DAE15217679; Thu, 12 Dec 2024 15:51:56 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1734018717; cv=none; b=LlQmEkbEqr/ELWywZkKy1HJLfRNPua42+XKp4RPvBdC/1UxAQ9cgmoB9ixEhnt1q8FG9p9RfKz8PHR/rd4GvlUrp74Y05MDqpHcUeA7FdQ/cKdLvvhyIe86eEEXnZWGC0mWDD2qDQOX/ZQ5XP6ylW+Y/dgyCVFzXwSS/Pvp6eaY= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1734018717; c=relaxed/simple; bh=psrDjIOhEzj8hdYv0bw/tgZdo8UpOezA758mw3Q/QPY=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=cuYyVmJdikG1cqpTTO5MUKBPeG9DginbKgS+5nZlupjU042vd80aVakCZozqKu05FIksm4kbHuPKQT1t2lPF/BUkaorqsMcq9ZOqqEVkmbDV+SrHrer/qnAtxPOTIXLp5BbAIOd5c2PrRDjIHwrYFtg5BkCZ70rE7efJHBCZ+Fc= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=VbUcBqxz; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="VbUcBqxz" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 5DD89C4CECE; Thu, 12 Dec 2024 15:51:56 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1734018716; bh=psrDjIOhEzj8hdYv0bw/tgZdo8UpOezA758mw3Q/QPY=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=VbUcBqxz/Q1m+7AADwPSt6aANmpLnU9/BDH46KUNiY1o5PfnLO+w/w8WZJGwIZh9m L1s+bDlWW+a5lxUtHjew06tvd5r1twVqrA7LT5hxZARXf1QykrLNFFSu5SpI/rHd2K BGi06tQ9aEEr0sKzjOoPlVdMddNt1ceqp/Jk2onM= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Mikhail Rudenko , Mark Brown , Sasha Levin Subject: [PATCH 6.1 013/772] regulator: rk808: Add apply_bit for BUCK3 on RK809 Date: Thu, 12 Dec 2024 15:49:18 +0100 Message-ID: <20241212144350.497187930@linuxfoundation.org> X-Mailer: git-send-email 2.47.1 In-Reply-To: <20241212144349.797589255@linuxfoundation.org> References: <20241212144349.797589255@linuxfoundation.org> User-Agent: quilt/0.67 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: stable@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 6.1-stable review patch. If anyone has any objections, please let me know. ------------------ From: Mikhail Rudenko [ Upstream commit 5e53e4a66bc7430dd2d11c18a86410e3a38d2940 ] Currently, RK809's BUCK3 regulator is modelled in the driver as a configurable regulator with 0.5-2.4V voltage range. But the voltage setting is not actually applied, because when bit 6 of PMIC_POWER_CONFIG register is set to 0 (default), BUCK3 output voltage is determined by the external feedback resistor. Fix this, by setting bit 6 when voltage selection is set. Existing users which do not specify voltage constraints in their device trees will not be affected by this change, since no voltage setting is applied in those cases, and bit 6 is not enabled. Signed-off-by: Mikhail Rudenko Link: https://patch.msgid.link/20241017-rk809-dcdc3-v1-1-e3c3de92f39c@gmail.com Signed-off-by: Mark Brown Signed-off-by: Sasha Levin --- drivers/regulator/rk808-regulator.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers/regulator/rk808-regulator.c b/drivers/regulator/rk808-regulator.c index 127dc2e2e6903..0763a5bbee2f5 100644 --- a/drivers/regulator/rk808-regulator.c +++ b/drivers/regulator/rk808-regulator.c @@ -906,6 +906,8 @@ static const struct regulator_desc rk809_reg[] = { .n_linear_ranges = ARRAY_SIZE(rk817_buck1_voltage_ranges), .vsel_reg = RK817_BUCK3_ON_VSEL_REG, .vsel_mask = RK817_BUCK_VSEL_MASK, + .apply_reg = RK817_POWER_CONFIG, + .apply_bit = RK817_BUCK3_FB_RES_INTER, .enable_reg = RK817_POWER_EN_REG(0), .enable_mask = ENABLE_MASK(RK817_ID_DCDC3), .enable_val = ENABLE_MASK(RK817_ID_DCDC3), -- 2.43.0