提交 4e829e98 编写于 作者: S Simon Goldschmidt 提交者: Marek Vasut

rtc: m41t62: add compatible for m41t82

This adds a compatible string for m41t82. This ensures that this driver
can be used for m41t82 in DM mode, too (asit was usable for this model in
non-DM mode before).

In addition, the HT bit has to be reset during probe, since the m41t82
chip sets it when entering battery standby mode.

This patch ensures this driver works on socfpga_socrates.
Signed-off-by: NSimon Goldschmidt <simon.k.r.goldschmidt@gmail.com>
Reviewed-by: NStefan Roese <sr@denx.de>
上级 36821b3f
...@@ -155,6 +155,15 @@ static int m41t62_rtc_reset(struct udevice *dev) ...@@ -155,6 +155,15 @@ static int m41t62_rtc_reset(struct udevice *dev)
return ret; return ret;
} }
/*
* Make sure HT bit is cleared. This bit is set on entering battery backup
* mode, so do this before the first read access.
*/
static int m41t62_rtc_probe(struct udevice *dev)
{
return m41t62_rtc_reset(dev);
}
static const struct rtc_ops m41t62_rtc_ops = { static const struct rtc_ops m41t62_rtc_ops = {
.get = m41t62_rtc_get, .get = m41t62_rtc_get,
.set = m41t62_rtc_set, .set = m41t62_rtc_set,
...@@ -163,6 +172,7 @@ static const struct rtc_ops m41t62_rtc_ops = { ...@@ -163,6 +172,7 @@ static const struct rtc_ops m41t62_rtc_ops = {
static const struct udevice_id m41t62_rtc_ids[] = { static const struct udevice_id m41t62_rtc_ids[] = {
{ .compatible = "st,m41t62" }, { .compatible = "st,m41t62" },
{ .compatible = "st,m41t82" },
{ .compatible = "microcrystal,rv4162" }, { .compatible = "microcrystal,rv4162" },
{ } { }
}; };
...@@ -172,6 +182,7 @@ U_BOOT_DRIVER(rtc_m41t62) = { ...@@ -172,6 +182,7 @@ U_BOOT_DRIVER(rtc_m41t62) = {
.id = UCLASS_RTC, .id = UCLASS_RTC,
.of_match = m41t62_rtc_ids, .of_match = m41t62_rtc_ids,
.ops = &m41t62_rtc_ops, .ops = &m41t62_rtc_ops,
.probe = &m41t62_rtc_probe,
}; };
#else /* NON DM RTC code - will be removed */ #else /* NON DM RTC code - will be removed */
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册