blob: 30648ea9e8e09db8ca18a50596b8b41da57dec00 [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
H Hartley Sweeten68b54f42017-02-10 11:11:55 -070022#define M48T86_SEC 0x00
23#define M48T86_SECALRM 0x01
24#define M48T86_MIN 0x02
25#define M48T86_MINALRM 0x03
26#define M48T86_HOUR 0x04
27#define M48T86_HOURALRM 0x05
28#define M48T86_DOW 0x06 /* 1 = sunday */
29#define M48T86_DOM 0x07
30#define M48T86_MONTH 0x08 /* 1 - 12 */
31#define M48T86_YEAR 0x09 /* 0 - 99 */
32#define M48T86_A 0x0a
33#define M48T86_B 0x0b
34#define M48T86_B_SET BIT(7)
35#define M48T86_B_DM BIT(2)
36#define M48T86_B_H24 BIT(1)
37#define M48T86_C 0x0c
38#define M48T86_D 0x0d
39#define M48T86_D_VRT BIT(7)
Alessandro Zummo1d98af82006-03-27 01:16:47 -080040
Alessandro Zummo1d98af82006-03-27 01:16:47 -080041static int m48t86_rtc_read_time(struct device *dev, struct rtc_time *tm)
42{
43 unsigned char reg;
44 struct platform_device *pdev = to_platform_device(dev);
Jingoo Hanb5f09022013-11-12 15:10:44 -080045 struct m48t86_ops *ops = dev_get_platdata(&pdev->dev);
Alessandro Zummo1d98af82006-03-27 01:16:47 -080046
H Hartley Sweeten68b54f42017-02-10 11:11:55 -070047 reg = ops->readbyte(M48T86_B);
Alessandro Zummo1d98af82006-03-27 01:16:47 -080048
H Hartley Sweeten68b54f42017-02-10 11:11:55 -070049 if (reg & M48T86_B_DM) {
Alessandro Zummo1d98af82006-03-27 01:16:47 -080050 /* data (binary) mode */
H Hartley Sweeten68b54f42017-02-10 11:11:55 -070051 tm->tm_sec = ops->readbyte(M48T86_SEC);
52 tm->tm_min = ops->readbyte(M48T86_MIN);
53 tm->tm_hour = ops->readbyte(M48T86_HOUR) & 0x3f;
54 tm->tm_mday = ops->readbyte(M48T86_DOM);
Alessandro Zummo1d98af82006-03-27 01:16:47 -080055 /* tm_mon is 0-11 */
H Hartley Sweeten68b54f42017-02-10 11:11:55 -070056 tm->tm_mon = ops->readbyte(M48T86_MONTH) - 1;
57 tm->tm_year = ops->readbyte(M48T86_YEAR) + 100;
58 tm->tm_wday = ops->readbyte(M48T86_DOW);
Alessandro Zummo1d98af82006-03-27 01:16:47 -080059 } else {
60 /* bcd mode */
H Hartley Sweeten68b54f42017-02-10 11:11:55 -070061 tm->tm_sec = bcd2bin(ops->readbyte(M48T86_SEC));
62 tm->tm_min = bcd2bin(ops->readbyte(M48T86_MIN));
63 tm->tm_hour = bcd2bin(ops->readbyte(M48T86_HOUR) & 0x3f);
64 tm->tm_mday = bcd2bin(ops->readbyte(M48T86_DOM));
Alessandro Zummo1d98af82006-03-27 01:16:47 -080065 /* tm_mon is 0-11 */
H Hartley Sweeten68b54f42017-02-10 11:11:55 -070066 tm->tm_mon = bcd2bin(ops->readbyte(M48T86_MONTH)) - 1;
67 tm->tm_year = bcd2bin(ops->readbyte(M48T86_YEAR)) + 100;
68 tm->tm_wday = bcd2bin(ops->readbyte(M48T86_DOW));
Alessandro Zummo1d98af82006-03-27 01:16:47 -080069 }
70
71 /* correct the hour if the clock is in 12h mode */
H Hartley Sweeten68b54f42017-02-10 11:11:55 -070072 if (!(reg & M48T86_B_H24))
73 if (ops->readbyte(M48T86_HOUR) & 0x80)
Alessandro Zummo1d98af82006-03-27 01:16:47 -080074 tm->tm_hour += 12;
75
Wan ZongShun52142ed2010-08-10 18:02:17 -070076 return rtc_valid_tm(tm);
Alessandro Zummo1d98af82006-03-27 01:16:47 -080077}
78
79static int m48t86_rtc_set_time(struct device *dev, struct rtc_time *tm)
80{
81 unsigned char reg;
82 struct platform_device *pdev = to_platform_device(dev);
Jingoo Hanb5f09022013-11-12 15:10:44 -080083 struct m48t86_ops *ops = dev_get_platdata(&pdev->dev);
Alessandro Zummo1d98af82006-03-27 01:16:47 -080084
H Hartley Sweeten68b54f42017-02-10 11:11:55 -070085 reg = ops->readbyte(M48T86_B);
Alessandro Zummo1d98af82006-03-27 01:16:47 -080086
87 /* update flag and 24h mode */
H Hartley Sweeten68b54f42017-02-10 11:11:55 -070088 reg |= M48T86_B_SET | M48T86_B_H24;
89 ops->writebyte(reg, M48T86_B);
Alessandro Zummo1d98af82006-03-27 01:16:47 -080090
H Hartley Sweeten68b54f42017-02-10 11:11:55 -070091 if (reg & M48T86_B_DM) {
Alessandro Zummo1d98af82006-03-27 01:16:47 -080092 /* data (binary) mode */
H Hartley Sweeten68b54f42017-02-10 11:11:55 -070093 ops->writebyte(tm->tm_sec, M48T86_SEC);
94 ops->writebyte(tm->tm_min, M48T86_MIN);
95 ops->writebyte(tm->tm_hour, M48T86_HOUR);
96 ops->writebyte(tm->tm_mday, M48T86_DOM);
97 ops->writebyte(tm->tm_mon + 1, M48T86_MONTH);
98 ops->writebyte(tm->tm_year % 100, M48T86_YEAR);
99 ops->writebyte(tm->tm_wday, M48T86_DOW);
Alessandro Zummo1d98af82006-03-27 01:16:47 -0800100 } else {
101 /* bcd mode */
H Hartley Sweeten68b54f42017-02-10 11:11:55 -0700102 ops->writebyte(bin2bcd(tm->tm_sec), M48T86_SEC);
103 ops->writebyte(bin2bcd(tm->tm_min), M48T86_MIN);
104 ops->writebyte(bin2bcd(tm->tm_hour), M48T86_HOUR);
105 ops->writebyte(bin2bcd(tm->tm_mday), M48T86_DOM);
106 ops->writebyte(bin2bcd(tm->tm_mon + 1), M48T86_MONTH);
107 ops->writebyte(bin2bcd(tm->tm_year % 100), M48T86_YEAR);
108 ops->writebyte(bin2bcd(tm->tm_wday), M48T86_DOW);
Alessandro Zummo1d98af82006-03-27 01:16:47 -0800109 }
110
111 /* update ended */
H Hartley Sweeten68b54f42017-02-10 11:11:55 -0700112 reg &= ~M48T86_B_SET;
113 ops->writebyte(reg, M48T86_B);
Alessandro Zummo1d98af82006-03-27 01:16:47 -0800114
115 return 0;
116}
117
118static int m48t86_rtc_proc(struct device *dev, struct seq_file *seq)
119{
120 unsigned char reg;
121 struct platform_device *pdev = to_platform_device(dev);
Jingoo Hanb5f09022013-11-12 15:10:44 -0800122 struct m48t86_ops *ops = dev_get_platdata(&pdev->dev);
Alessandro Zummo1d98af82006-03-27 01:16:47 -0800123
H Hartley Sweeten68b54f42017-02-10 11:11:55 -0700124 reg = ops->readbyte(M48T86_B);
Alessandro Zummo1d98af82006-03-27 01:16:47 -0800125
Alessandro Zummo1d98af82006-03-27 01:16:47 -0800126 seq_printf(seq, "mode\t\t: %s\n",
H Hartley Sweeten68b54f42017-02-10 11:11:55 -0700127 (reg & M48T86_B_DM) ? "binary" : "bcd");
Alessandro Zummo1d98af82006-03-27 01:16:47 -0800128
H Hartley Sweeten68b54f42017-02-10 11:11:55 -0700129 reg = ops->readbyte(M48T86_D);
Alessandro Zummo1d98af82006-03-27 01:16:47 -0800130
131 seq_printf(seq, "battery\t\t: %s\n",
H Hartley Sweeten68b54f42017-02-10 11:11:55 -0700132 (reg & M48T86_D_VRT) ? "ok" : "exhausted");
Alessandro Zummo1d98af82006-03-27 01:16:47 -0800133
134 return 0;
135}
136
David Brownellff8371a2006-09-30 23:28:17 -0700137static const struct rtc_class_ops m48t86_rtc_ops = {
Alessandro Zummo1d98af82006-03-27 01:16:47 -0800138 .read_time = m48t86_rtc_read_time,
139 .set_time = m48t86_rtc_set_time,
140 .proc = m48t86_rtc_proc,
141};
142
Greg Kroah-Hartman5a167f42012-12-21 13:09:38 -0800143static int m48t86_rtc_probe(struct platform_device *dev)
Alessandro Zummo1d98af82006-03-27 01:16:47 -0800144{
145 unsigned char reg;
Jingoo Hanb5f09022013-11-12 15:10:44 -0800146 struct m48t86_ops *ops = dev_get_platdata(&dev->dev);
Jingoo Hand5b6bb02013-04-29 16:19:42 -0700147 struct rtc_device *rtc;
148
149 rtc = devm_rtc_device_register(&dev->dev, "m48t86",
H Hartley Sweeten68b54f42017-02-10 11:11:55 -0700150 &m48t86_rtc_ops, THIS_MODULE);
Alessandro Zummo1d98af82006-03-27 01:16:47 -0800151
Alessandro Zummod1d65b72006-04-10 22:54:45 -0700152 if (IS_ERR(rtc))
Alessandro Zummo1d98af82006-03-27 01:16:47 -0800153 return PTR_ERR(rtc);
Alessandro Zummo1d98af82006-03-27 01:16:47 -0800154
155 platform_set_drvdata(dev, rtc);
156
157 /* read battery status */
H Hartley Sweeten68b54f42017-02-10 11:11:55 -0700158 reg = ops->readbyte(M48T86_D);
Alessandro Zummo1d98af82006-03-27 01:16:47 -0800159 dev_info(&dev->dev, "battery %s\n",
H Hartley Sweeten68b54f42017-02-10 11:11:55 -0700160 (reg & M48T86_D_VRT) ? "ok" : "exhausted");
Alessandro Zummo1d98af82006-03-27 01:16:47 -0800161
162 return 0;
163}
164
Alessandro Zummo1d98af82006-03-27 01:16:47 -0800165static struct platform_driver m48t86_rtc_platform_driver = {
166 .driver = {
167 .name = "rtc-m48t86",
Alessandro Zummo1d98af82006-03-27 01:16:47 -0800168 },
169 .probe = m48t86_rtc_probe,
Alessandro Zummo1d98af82006-03-27 01:16:47 -0800170};
171
Axel Lin0c4eae62012-01-10 15:10:48 -0800172module_platform_driver(m48t86_rtc_platform_driver);
Alessandro Zummo1d98af82006-03-27 01:16:47 -0800173
174MODULE_AUTHOR("Alessandro Zummo <a.zummo@towertech.it>");
175MODULE_DESCRIPTION("M48T86 RTC driver");
176MODULE_LICENSE("GPL");
Kay Sieversad28a072008-04-10 21:29:25 -0700177MODULE_ALIAS("platform:rtc-m48t86");