4 * From Phillips' datasheet:
6 * The PCF8563 is a CMOS real-time clock/calendar optimized for low power
7 * consumption. A programmable clock output, interrupt output and voltage
8 * low detector are also provided. All address and data are transferred
9 * serially via two-line bidirectional I2C-bus. Maximum bus speed is
10 * 400 kbits/s. The built-in word address register is incremented
11 * automatically after each written or read byte.
13 * Copyright (c) 2002-2007, Axis Communications AB
14 * All rights reserved.
16 * Author: Tobias Anderberg <tobiasa@axis.com>.
20 #include <linux/module.h>
21 #include <linux/kernel.h>
22 #include <linux/types.h>
23 #include <linux/sched.h>
24 #include <linux/init.h>
26 #include <linux/ioctl.h>
27 #include <linux/delay.h>
28 #include <linux/bcd.h>
29 #include <linux/mutex.h>
31 #include <asm/uaccess.h>
32 #include <asm/system.h>
38 #define PCF8563_MAJOR 121 /* Local major number. */
39 #define DEVICE_NAME "rtc" /* Name which is registered in /proc/devices. */
40 #define PCF8563_NAME "PCF8563"
41 #define DRIVER_VERSION "$Revision: 1.24 $"
43 /* I2C bus slave registers. */
44 #define RTC_I2C_READ 0xa3
45 #define RTC_I2C_WRITE 0xa2
47 /* Two simple wrapper macros, saves a few keystrokes. */
48 #define rtc_read(x) i2c_readreg(RTC_I2C_READ, x)
49 #define rtc_write(x,y) i2c_writereg(RTC_I2C_WRITE, x, y)
51 static DEFINE_MUTEX(pcf8563_mutex
);
52 static DEFINE_MUTEX(rtc_lock
); /* Protect state etc */
54 static const unsigned char days_in_month
[] =
55 { 0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 };
57 static long pcf8563_unlocked_ioctl(struct file
*, unsigned int, unsigned long);
59 /* Cache VL bit value read at driver init since writing the RTC_SECOND
60 * register clears the VL status.
62 static int voltage_low
;
64 static const struct file_operations pcf8563_fops
= {
66 .unlocked_ioctl
= pcf8563_unlocked_ioctl
,
67 .llseek
= noop_llseek
,
71 pcf8563_readreg(int reg
)
73 unsigned char res
= rtc_read(reg
);
75 /* The PCF8563 does not return 0 for unimplemented bits. */
82 case RTC_DAY_OF_MONTH
:
97 case RTC_CLOCKOUT_FREQ
:
98 case RTC_TIMER_CONTROL
:
106 pcf8563_writereg(int reg
, unsigned char val
)
112 get_rtc_time(struct rtc_time
*tm
)
114 tm
->tm_sec
= rtc_read(RTC_SECONDS
);
115 tm
->tm_min
= rtc_read(RTC_MINUTES
);
116 tm
->tm_hour
= rtc_read(RTC_HOURS
);
117 tm
->tm_mday
= rtc_read(RTC_DAY_OF_MONTH
);
118 tm
->tm_wday
= rtc_read(RTC_WEEKDAY
);
119 tm
->tm_mon
= rtc_read(RTC_MONTH
);
120 tm
->tm_year
= rtc_read(RTC_YEAR
);
122 if (tm
->tm_sec
& 0x80) {
123 printk(KERN_ERR
"%s: RTC Voltage Low - reliable date/time "
124 "information is no longer guaranteed!\n", PCF8563_NAME
);
127 tm
->tm_year
= bcd2bin(tm
->tm_year
) +
128 ((tm
->tm_mon
& 0x80) ? 100 : 0);
133 tm
->tm_wday
&= 0x07; /* Not coded in BCD. */
136 tm
->tm_sec
= bcd2bin(tm
->tm_sec
);
137 tm
->tm_min
= bcd2bin(tm
->tm_min
);
138 tm
->tm_hour
= bcd2bin(tm
->tm_hour
);
139 tm
->tm_mday
= bcd2bin(tm
->tm_mday
);
140 tm
->tm_mon
= bcd2bin(tm
->tm_mon
);
141 tm
->tm_mon
--; /* Month is 1..12 in RTC but 0..11 in linux */
148 static int first
= 1;
154 /* Initiate the i2c protocol. */
157 printk(KERN_CRIT
"pcf8563_init: Failed to init i2c.\n");
162 * First of all we need to reset the chip. This is done by
163 * clearing control1, control2 and clk freq and resetting
166 if (rtc_write(RTC_CONTROL1
, 0x00) < 0)
169 if (rtc_write(RTC_CONTROL2
, 0x00) < 0)
172 if (rtc_write(RTC_CLOCKOUT_FREQ
, 0x00) < 0)
175 if (rtc_write(RTC_TIMER_CONTROL
, 0x03) < 0)
178 /* Reset the alarms. */
179 if (rtc_write(RTC_MINUTE_ALARM
, 0x80) < 0)
182 if (rtc_write(RTC_HOUR_ALARM
, 0x80) < 0)
185 if (rtc_write(RTC_DAY_ALARM
, 0x80) < 0)
188 if (rtc_write(RTC_WEEKDAY_ALARM
, 0x80) < 0)
191 /* Check for low voltage, and warn about it. */
192 if (rtc_read(RTC_SECONDS
) & 0x80) {
194 printk(KERN_WARNING
"%s: RTC Voltage Low - reliable "
195 "date/time information is no longer guaranteed!\n",
202 printk(KERN_INFO
"%s: Error initializing chip.\n", PCF8563_NAME
);
210 unregister_chrdev(PCF8563_MAJOR
, DEVICE_NAME
);
214 * ioctl calls for this driver. Why return -ENOTTY upon error? Because
217 static int pcf8563_ioctl(struct file
*filp
, unsigned int cmd
, unsigned long arg
)
219 /* Some sanity checks. */
220 if (_IOC_TYPE(cmd
) != RTC_MAGIC
)
223 if (_IOC_NR(cmd
) > RTC_MAX_IOCTL
)
231 mutex_lock(&rtc_lock
);
232 memset(&tm
, 0, sizeof tm
);
235 if (copy_to_user((struct rtc_time
*) arg
, &tm
,
237 mutex_unlock(&rtc_lock
);
241 mutex_unlock(&rtc_lock
);
252 memset(&tm
, 0, sizeof tm
);
253 if (!capable(CAP_SYS_TIME
))
256 if (copy_from_user(&tm
, (struct rtc_time
*) arg
, sizeof tm
))
259 /* Convert from struct tm to struct rtc_time. */
264 * Check if tm.tm_year is a leap year. A year is a leap
265 * year if it is divisible by 4 but not 100, except
266 * that years divisible by 400 _are_ leap years.
269 leap
= (tm
.tm_mon
== 2) &&
270 ((year
% 4 == 0 && year
% 100 != 0) || year
% 400 == 0);
272 /* Perform some sanity checks. */
273 if ((tm
.tm_year
< 1970) ||
276 (tm
.tm_mday
> days_in_month
[tm
.tm_mon
] + leap
) ||
278 (tm
.tm_hour
>= 24) ||
283 century
= (tm
.tm_year
>= 2000) ? 0x80 : 0;
284 tm
.tm_year
= tm
.tm_year
% 100;
286 tm
.tm_year
= bin2bcd(tm
.tm_year
);
287 tm
.tm_mon
= bin2bcd(tm
.tm_mon
);
288 tm
.tm_mday
= bin2bcd(tm
.tm_mday
);
289 tm
.tm_hour
= bin2bcd(tm
.tm_hour
);
290 tm
.tm_min
= bin2bcd(tm
.tm_min
);
291 tm
.tm_sec
= bin2bcd(tm
.tm_sec
);
292 tm
.tm_mon
|= century
;
294 mutex_lock(&rtc_lock
);
296 rtc_write(RTC_YEAR
, tm
.tm_year
);
297 rtc_write(RTC_MONTH
, tm
.tm_mon
);
298 rtc_write(RTC_WEEKDAY
, tm
.tm_wday
); /* Not coded in BCD. */
299 rtc_write(RTC_DAY_OF_MONTH
, tm
.tm_mday
);
300 rtc_write(RTC_HOURS
, tm
.tm_hour
);
301 rtc_write(RTC_MINUTES
, tm
.tm_min
);
302 rtc_write(RTC_SECONDS
, tm
.tm_sec
);
304 mutex_unlock(&rtc_lock
);
310 printk(KERN_ERR
"%s: RTC Voltage Low - "
311 "reliable date/time information is no "
312 "longer guaranteed!\n", PCF8563_NAME
);
315 if (copy_to_user((int *) arg
, &voltage_low
, sizeof(int)))
321 /* Clear the VL bit in the seconds register in case
322 * the time has not been set already (which would
323 * have cleared it). This does not really matter
324 * because of the cached voltage_low value but do it
325 * anyway for consistency. */
327 int ret
= rtc_read(RTC_SECONDS
);
329 rtc_write(RTC_SECONDS
, (ret
& 0x7F));
331 /* Clear the cached value. */
343 static long pcf8563_unlocked_ioctl(struct file
*filp
, unsigned int cmd
, unsigned long arg
)
347 mutex_lock(&pcf8563_mutex
);
348 ret
= pcf8563_ioctl(filp
, cmd
, arg
);
349 mutex_unlock(&pcf8563_mutex
);
354 static int __init
pcf8563_register(void)
356 if (pcf8563_init() < 0) {
357 printk(KERN_INFO
"%s: Unable to initialize Real-Time Clock "
358 "Driver, %s\n", PCF8563_NAME
, DRIVER_VERSION
);
362 if (register_chrdev(PCF8563_MAJOR
, DEVICE_NAME
, &pcf8563_fops
) < 0) {
363 printk(KERN_INFO
"%s: Unable to get major number %d for RTC device.\n",
364 PCF8563_NAME
, PCF8563_MAJOR
);
368 printk(KERN_INFO
"%s Real-Time Clock Driver, %s\n", PCF8563_NAME
,
371 /* Check for low voltage, and warn about it. */
373 printk(KERN_WARNING
"%s: RTC Voltage Low - reliable date/time "
374 "information is no longer guaranteed!\n", PCF8563_NAME
);
380 module_init(pcf8563_register
);
381 module_exit(pcf8563_exit
);