All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] rtc: rs5c372: fix incorrect oscillation value on r2221tl
@ 2021-12-06 12:58 Camel Guo
  2022-01-05  0:05 ` Alexandre Belloni
  0 siblings, 1 reply; 2+ messages in thread
From: Camel Guo @ 2021-12-06 12:58 UTC (permalink / raw)
  To: Alessandro Zummo, Alexandre Belloni
  Cc: kernel, Camel Guo, linux-rtc, linux-kernel

From: Camel Guo <camelg@axis.com>

The XSL bit only exists in RS5C372A/B. On other Ricoh RTC chips
supported in rs5c372, this bit has different meaning. For example, on
R2221x and R2223x, this bit of oscillation adjustment register
determines the operation frequency of oscillation adjustment circuit and
the oscillation is always 32768HZ. But rs5c372_get_trim gives 32000HZ to
osc when DEV is 1.

Signed-off-by: Camel Guo <camelg@axis.com>
---
 drivers/rtc/rtc-rs5c372.c | 10 +++++++---
 1 file changed, 7 insertions(+), 3 deletions(-)

diff --git a/drivers/rtc/rtc-rs5c372.c b/drivers/rtc/rtc-rs5c372.c
index 80980414890c..f031f83fa1a2 100644
--- a/drivers/rtc/rtc-rs5c372.c
+++ b/drivers/rtc/rtc-rs5c372.c
@@ -28,7 +28,7 @@
 #define RS5C372_REG_MONTH	5
 #define RS5C372_REG_YEAR	6
 #define RS5C372_REG_TRIM	7
-#	define RS5C372_TRIM_XSL		0x80
+#	define RS5C372_TRIM_XSL		0x80		/* only if RS5C372[a|b] */
 #	define RS5C372_TRIM_MASK	0x7F
 
 #define RS5C_REG_ALARM_A_MIN	8			/* or ALARM_W */
@@ -324,8 +324,12 @@ static int rs5c372_get_trim(struct i2c_client *client, int *osc, int *trim)
 	struct rs5c372 *rs5c372 = i2c_get_clientdata(client);
 	u8 tmp = rs5c372->regs[RS5C372_REG_TRIM];
 
-	if (osc)
-		*osc = (tmp & RS5C372_TRIM_XSL) ? 32000 : 32768;
+	if (osc) {
+		if (rs5c372->type == rtc_rs5c372a || rs5c372->type == rtc_rs5c372b)
+			*osc = (tmp & RS5C372_TRIM_XSL) ? 32000 : 32768;
+		else
+			*osc = 32768;
+	}
 
 	if (trim) {
 		dev_dbg(&client->dev, "%s: raw trim=%x\n", __func__, tmp);
-- 
2.20.1


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] rtc: rs5c372: fix incorrect oscillation value on r2221tl
  2021-12-06 12:58 [PATCH] rtc: rs5c372: fix incorrect oscillation value on r2221tl Camel Guo
@ 2022-01-05  0:05 ` Alexandre Belloni
  0 siblings, 0 replies; 2+ messages in thread
From: Alexandre Belloni @ 2022-01-05  0:05 UTC (permalink / raw)
  To: Camel Guo, Alessandro Zummo
  Cc: Alexandre Belloni, Camel Guo, linux-kernel, linux-rtc, kernel

On Mon, 6 Dec 2021 13:58:31 +0100, Camel Guo wrote:
> From: Camel Guo <camelg@axis.com>
> 
> The XSL bit only exists in RS5C372A/B. On other Ricoh RTC chips
> supported in rs5c372, this bit has different meaning. For example, on
> R2221x and R2223x, this bit of oscillation adjustment register
> determines the operation frequency of oscillation adjustment circuit and
> the oscillation is always 32768HZ. But rs5c372_get_trim gives 32000HZ to
> osc when DEV is 1.
> 
> [...]

Applied, thanks!

[1/1] rtc: rs5c372: fix incorrect oscillation value on r2221tl
      commit: ed06106614341301b3c4b84b6c0b497a72caec7d

Best regards,
-- 
Alexandre Belloni <alexandre.belloni@bootlin.com>

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2022-01-05  0:05 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-12-06 12:58 [PATCH] rtc: rs5c372: fix incorrect oscillation value on r2221tl Camel Guo
2022-01-05  0:05 ` Alexandre Belloni

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.