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 799DA149DF0; Fri, 6 Dec 2024 14:47:54 +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=1733496474; cv=none; b=sxIcvIKqhqPP8zgdf2ZncHE7+gXfUpXEj35c06fu08Y7EQRTOT0nrF7Eny1/Itejc52KAdQYGA1QDlcTXwXzbGqNLA7RVnr35CdG4Uy7hV2DtC/vtsNzWV2PBNIX1sNUlBbtqYq2vs1/RD0mXUBdN97kePqWwsjuzQiHsv+UfKA= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1733496474; c=relaxed/simple; bh=ZeWfaqQjGFhx7QjpDu3GDAYDR+RrEmDBdBLURUYn3rI=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=SwEIuW22JK2NPE0YpIVnf+6aaB74FtsR3yD6EMU9UxVbC6xkIZZuOlG0Imq5y92g7yTsAADRAJp47IQOqqq2D+Sq3lujUFQkxZL4VTK3AH7cZbl5XAWKJMwlofmlFSrE0WjCCUbs3egBUVSPykRk6JiLAfvnnopki60AAatngT4= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=b/DWI/gg; 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="b/DWI/gg" Received: by smtp.kernel.org (Postfix) with ESMTPSA id E3941C4CED1; Fri, 6 Dec 2024 14:47:53 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1733496474; bh=ZeWfaqQjGFhx7QjpDu3GDAYDR+RrEmDBdBLURUYn3rI=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=b/DWI/ggYnt8w2I/oLvymLkL9BYzgbEIjljgYdq/p4c+obHmvDUf/qirrayCmnh4o GcPJEkxRYf3D+GylsjxL1lYRS4e1cynUR1cilOzsSR0/MstZ1qmkfXe2xYwdC/w4hd fP1Cd22XaepjLyXs+FCMW9KfbrsJGtSRle3Z8CCk= 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.6 017/676] regulator: rk808: Add apply_bit for BUCK3 on RK809 Date: Fri, 6 Dec 2024 15:27:16 +0100 Message-ID: <20241206143654.033855373@linuxfoundation.org> X-Mailer: git-send-email 2.47.1 In-Reply-To: <20241206143653.344873888@linuxfoundation.org> References: <20241206143653.344873888@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.6-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 867a2cf243f68..2c83cb18d60dc 100644 --- a/drivers/regulator/rk808-regulator.c +++ b/drivers/regulator/rk808-regulator.c @@ -1286,6 +1286,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