blob: 0eeb5714c00fa610f7e438ac084ee16e09a89ae3 [file] [log] [blame]
Alessandro Zummo1d98af82006-03-27 01:16:47 -08001/*
2 * ST M48T86 / Dallas DS12887 RTC driver
3 * Copyright (c) 2006 Tower Technologies
4 *
5 * Author: Alessandro Zummo <a.zummo@towertech.it>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 *
11 * This drivers only supports the clock running in BCD and 24H mode.
12 * If it will be ever adapted to binary and 12H mode, care must be taken
13 * to not introduce bugs.
14 */
15
16#include <linux/module.h>
17#include <linux/rtc.h>
18#include <linux/platform_device.h>
Alexandre Belloni803bb302016-06-26 22:57:52 +020019#include <linux/platform_data/rtc-m48t86.h>
Alessandro Zummo1d98af82006-03-27 01:16:47 -080020#include <linux/bcd.h>
21
22#define M48T86_REG_SEC 0x00
23#define M48T86_REG_SECALRM 0x01
24#define M48T86_REG_MIN 0x02
25#define M48T86_REG_MINALRM 0x03
Alessandro Zummof90a6502006-04-10 22:54:42 -070026#define M48T86_REG_HOUR 0x04
Alessandro Zummo1d98af82006-03-27 01:16:47 -080027#define M48T86_REG_HOURALRM 0x05
28#define M48T86_REG_DOW 0x06 /* 1 = sunday */
29#define M48T86_REG_DOM 0x07
30#define M48T86_REG_MONTH 0x08 /* 1 - 12 */
31#define M48T86_REG_YEAR 0x09 /* 0 - 99 */
32#define M48T86_REG_A 0x0A
33#define M48T86_REG_B 0x0B
34#define M48T86_REG_C 0x0C
35#define M48T86_REG_D 0x0D
36
37#define M48T86_REG_B_H24 (1 << 1)
38#define M48T86_REG_B_DM (1 << 2)
39#define M48T86_REG_B_SET (1 << 7)
40#define M48T86_REG_D_VRT (1 << 7)
41
Alessandro Zummo1d98af82006-03-27 01:16:47 -080042static int m48t86_rtc_read_time(struct device *dev, struct rtc_time *tm)
43{
44 unsigned char reg;
45 struct platform_device *pdev = to_platform_device(dev);
Jingoo Hanb5f09022013-11-12 15:10:44 -080046 struct m48t86_ops *ops = dev_get_platdata(&pdev->dev);
Alessandro Zummo1d98af82006-03-27 01:16:47 -080047
Andrew Morton2d7b20c2006-06-04 02:51:42 -070048 reg = ops->readbyte(M48T86_REG_B);
Alessandro Zummo1d98af82006-03-27 01:16:47 -080049
50 if (reg & M48T86_REG_B_DM) {
51 /* data (binary) mode */
Andrew Morton2d7b20c2006-06-04 02:51:42 -070052 tm->tm_sec = ops->readbyte(M48T86_REG_SEC);
53 tm->tm_min = ops->readbyte(M48T86_REG_MIN);
54 tm->tm_hour = ops->readbyte(M48T86_REG_HOUR) & 0x3F;
55 tm->tm_mday = ops->readbyte(M48T86_REG_DOM);
Alessandro Zummo1d98af82006-03-27 01:16:47 -080056 /* tm_mon is 0-11 */
Andrew Morton2d7b20c2006-06-04 02:51:42 -070057 tm->tm_mon = ops->readbyte(M48T86_REG_MONTH) - 1;
58 tm->tm_year = ops->readbyte(M48T86_REG_YEAR) + 100;
59 tm->tm_wday = ops->readbyte(M48T86_REG_DOW);
Alessandro Zummo1d98af82006-03-27 01:16:47 -080060 } else {
61 /* bcd mode */
Adrian Bunkfe20ba72008-10-18 20:28:41 -070062 tm->tm_sec = bcd2bin(ops->readbyte(M48T86_REG_SEC));
63 tm->tm_min = bcd2bin(ops->readbyte(M48T86_REG_MIN));
64 tm->tm_hour = bcd2bin(ops->readbyte(M48T86_REG_HOUR) & 0x3F);
65 tm->tm_mday = bcd2bin(ops->readbyte(M48T86_REG_DOM));
Alessandro Zummo1d98af82006-03-27 01:16:47 -080066 /* tm_mon is 0-11 */
Adrian Bunkfe20ba72008-10-18 20:28:41 -070067 tm->tm_mon = bcd2bin(ops->readbyte(M48T86_REG_MONTH)) - 1;
68 tm->tm_year = bcd2bin(ops->readbyte(M48T86_REG_YEAR)) + 100;
69 tm->tm_wday = bcd2bin(ops->readbyte(M48T86_REG_DOW));
Alessandro Zummo1d98af82006-03-27 01:16:47 -080070 }
71
72 /* correct the hour if the clock is in 12h mode */
73 if (!(reg & M48T86_REG_B_H24))
Andrew Morton2d7b20c2006-06-04 02:51:42 -070074 if (ops->readbyte(M48T86_REG_HOUR) & 0x80)
Alessandro Zummo1d98af82006-03-27 01:16:47 -080075 tm->tm_hour += 12;
76
Wan ZongShun52142ed2010-08-10 18:02:17 -070077 return rtc_valid_tm(tm);
Alessandro Zummo1d98af82006-03-27 01:16:47 -080078}
79
80static int m48t86_rtc_set_time(struct device *dev, struct rtc_time *tm)
81{
82 unsigned char reg;
83 struct platform_device *pdev = to_platform_device(dev);
Jingoo Hanb5f09022013-11-12 15:10:44 -080084 struct m48t86_ops *ops = dev_get_platdata(&pdev->dev);
Alessandro Zummo1d98af82006-03-27 01:16:47 -080085
Andrew Morton2d7b20c2006-06-04 02:51:42 -070086 reg = ops->readbyte(M48T86_REG_B);
Alessandro Zummo1d98af82006-03-27 01:16:47 -080087
88 /* update flag and 24h mode */
89 reg |= M48T86_REG_B_SET | M48T86_REG_B_H24;
Andrew Morton2d7b20c2006-06-04 02:51:42 -070090 ops->writebyte(reg, M48T86_REG_B);
Alessandro Zummo1d98af82006-03-27 01:16:47 -080091
92 if (reg & M48T86_REG_B_DM) {
93 /* data (binary) mode */
Andrew Morton2d7b20c2006-06-04 02:51:42 -070094 ops->writebyte(tm->tm_sec, M48T86_REG_SEC);
95 ops->writebyte(tm->tm_min, M48T86_REG_MIN);
96 ops->writebyte(tm->tm_hour, M48T86_REG_HOUR);
97 ops->writebyte(tm->tm_mday, M48T86_REG_DOM);
98 ops->writebyte(tm->tm_mon + 1, M48T86_REG_MONTH);
99 ops->writebyte(tm->tm_year % 100, M48T86_REG_YEAR);
100 ops->writebyte(tm->tm_wday, M48T86_REG_DOW);
Alessandro Zummo1d98af82006-03-27 01:16:47 -0800101 } else {
102 /* bcd mode */
Adrian Bunkfe20ba72008-10-18 20:28:41 -0700103 ops->writebyte(bin2bcd(tm->tm_sec), M48T86_REG_SEC);
104 ops->writebyte(bin2bcd(tm->tm_min), M48T86_REG_MIN);
105 ops->writebyte(bin2bcd(tm->tm_hour), M48T86_REG_HOUR);
106 ops->writebyte(bin2bcd(tm->tm_mday), M48T86_REG_DOM);
107 ops->writebyte(bin2bcd(tm->tm_mon + 1), M48T86_REG_MONTH);
108 ops->writebyte(bin2bcd(tm->tm_year % 100), M48T86_REG_YEAR);
109 ops->writebyte(bin2bcd(tm->tm_wday), M48T86_REG_DOW);
Alessandro Zummo1d98af82006-03-27 01:16:47 -0800110 }
111
112 /* update ended */
113 reg &= ~M48T86_REG_B_SET;
Andrew Morton2d7b20c2006-06-04 02:51:42 -0700114 ops->writebyte(reg, M48T86_REG_B);
Alessandro Zummo1d98af82006-03-27 01:16:47 -0800115
116 return 0;
117}
118
119static int m48t86_rtc_proc(struct device *dev, struct seq_file *seq)
120{
121 unsigned char reg;
122 struct platform_device *pdev = to_platform_device(dev);
Jingoo Hanb5f09022013-11-12 15:10:44 -0800123 struct m48t86_ops *ops = dev_get_platdata(&pdev->dev);
Alessandro Zummo1d98af82006-03-27 01:16:47 -0800124
Andrew Morton2d7b20c2006-06-04 02:51:42 -0700125 reg = ops->readbyte(M48T86_REG_B);
Alessandro Zummo1d98af82006-03-27 01:16:47 -0800126
Alessandro Zummo1d98af82006-03-27 01:16:47 -0800127 seq_printf(seq, "mode\t\t: %s\n",
128 (reg & M48T86_REG_B_DM) ? "binary" : "bcd");
129
Andrew Morton2d7b20c2006-06-04 02:51:42 -0700130 reg = ops->readbyte(M48T86_REG_D);
Alessandro Zummo1d98af82006-03-27 01:16:47 -0800131
132 seq_printf(seq, "battery\t\t: %s\n",
133 (reg & M48T86_REG_D_VRT) ? "ok" : "exhausted");
134
135 return 0;
136}
137
David Brownellff8371a2006-09-30 23:28:17 -0700138static const struct rtc_class_ops m48t86_rtc_ops = {
Alessandro Zummo1d98af82006-03-27 01:16:47 -0800139 .read_time = m48t86_rtc_read_time,
140 .set_time = m48t86_rtc_set_time,
141 .proc = m48t86_rtc_proc,
142};
143
Greg Kroah-Hartman5a167f42012-12-21 13:09:38 -0800144static int m48t86_rtc_probe(struct platform_device *dev)
Alessandro Zummo1d98af82006-03-27 01:16:47 -0800145{
146 unsigned char reg;
Jingoo Hanb5f09022013-11-12 15:10:44 -0800147 struct m48t86_ops *ops = dev_get_platdata(&dev->dev);
Jingoo Hand5b6bb02013-04-29 16:19:42 -0700148 struct rtc_device *rtc;
149
150 rtc = devm_rtc_device_register(&dev->dev, "m48t86",
151 &m48t86_rtc_ops, THIS_MODULE);
Alessandro Zummo1d98af82006-03-27 01:16:47 -0800152
Alessandro Zummod1d65b72006-04-10 22:54:45 -0700153 if (IS_ERR(rtc))
Alessandro Zummo1d98af82006-03-27 01:16:47 -0800154 return PTR_ERR(rtc);
Alessandro Zummo1d98af82006-03-27 01:16:47 -0800155
156 platform_set_drvdata(dev, rtc);
157
158 /* read battery status */
Andrew Morton2d7b20c2006-06-04 02:51:42 -0700159 reg = ops->readbyte(M48T86_REG_D);
Alessandro Zummo1d98af82006-03-27 01:16:47 -0800160 dev_info(&dev->dev, "battery %s\n",
161 (reg & M48T86_REG_D_VRT) ? "ok" : "exhausted");
162
163 return 0;
164}
165
Alessandro Zummo1d98af82006-03-27 01:16:47 -0800166static struct platform_driver m48t86_rtc_platform_driver = {
167 .driver = {
168 .name = "rtc-m48t86",
Alessandro Zummo1d98af82006-03-27 01:16:47 -0800169 },
170 .probe = m48t86_rtc_probe,
Alessandro Zummo1d98af82006-03-27 01:16:47 -0800171};
172
Axel Lin0c4eae62012-01-10 15:10:48 -0800173module_platform_driver(m48t86_rtc_platform_driver);
Alessandro Zummo1d98af82006-03-27 01:16:47 -0800174
175MODULE_AUTHOR("Alessandro Zummo <a.zummo@towertech.it>");
176MODULE_DESCRIPTION("M48T86 RTC driver");
177MODULE_LICENSE("GPL");
Kay Sieversad28a072008-04-10 21:29:25 -0700178MODULE_ALIAS("platform:rtc-m48t86");