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 A27A153365; Thu, 12 Dec 2024 17:14:31 +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=1734023671; cv=none; b=DoGLnt7+P5UoXW8Fl1qoDQgrTs3H2jAYTcKG91ndQTuaQW+EBf7KIZX0Py8tX2hsO0HA0J4Qa0DYLLd7bvQeJHjQg823yUkbBLUqp64mhLK65RWPEEDHB6HOR8scJ1Sy80Hru7TvSyfn/y/JDlUpnYLW204UiX6m8dApa4/BJos= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1734023671; c=relaxed/simple; bh=BWQV4sBPKl1mcllYJxTgMAQevISgKdVshQ9WmZ+bx40=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=mAAzyQOOzPgHRLXjECfL6vAezIcv+MqtLMVbouTwFuaFJ4jwomH2UY+BiAHWrWlveMDeHGfQA80uzOzT/vAgSxeky0/y6MaTeW+PJjx/WK+6G3kEmY4v8tShAQgAGw1nJMPqe6z3jlJyDzf8UdlN79YPFWaukvD2YpZjFfBhRjY= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=C2q0Ke7r; 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="C2q0Ke7r" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 1BE8BC4CECE; Thu, 12 Dec 2024 17:14:30 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1734023671; bh=BWQV4sBPKl1mcllYJxTgMAQevISgKdVshQ9WmZ+bx40=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=C2q0Ke7rswl74UY8laEzAqxt6DscRJkNWL5D1LsiIx6ZurtyWR1TKHcHm20wwQWAF 7UTmTk+58rA49NZW1E2+q+rIO698ujXDJ7tnXgB+ed8tuFF1CopvrjsXlgMMd+zSln NfkKge8MnT8QBfbqMiQ4S4qWT0UgO3VmMgdKNNYE= 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 5.10 043/459] regulator: rk808: Add apply_bit for BUCK3 on RK809 Date: Thu, 12 Dec 2024 15:56:21 +0100 Message-ID: <20241212144255.228188623@linuxfoundation.org> X-Mailer: git-send-email 2.47.1 In-Reply-To: <20241212144253.511169641@linuxfoundation.org> References: <20241212144253.511169641@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 5.10-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 e926c1a858460..e3b9d5ce8dbbf 100644 --- a/drivers/regulator/rk808-regulator.c +++ b/drivers/regulator/rk808-regulator.c @@ -944,6 +944,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