1 /*!***************************************************************************
3 *! FILE NAME : ds1302.c
5 *! DESCRIPTION: Implements an interface for the DS1302 RTC
7 *! Functions exported: ds1302_readreg, ds1302_writereg, ds1302_init, get_rtc_status
9 *! ---------------------------------------------------------------------------
11 *! (C) Copyright 1999, 2000, 2001 Axis Communications AB, LUND, SWEDEN
13 *!***************************************************************************/
17 #include <linux/init.h>
19 #include <linux/module.h>
20 #include <linux/miscdevice.h>
21 #include <linux/delay.h>
22 #include <linux/bcd.h>
24 #include <asm/uaccess.h>
25 #include <asm/system.h>
28 #if defined(CONFIG_M32R)
32 #define RTC_MAJOR_NR 121 /* local major, change later */
34 static const char ds1302_name[] = "ds1302";
38 out_byte_rtc(unsigned int reg_addr, unsigned char x)
41 outw(0x0001,(unsigned long)PLD_RTCRSTODT);
43 outw(((x<<8)|(reg_addr&0xff)),(unsigned long)PLD_RTCWRDATA);
45 outw(0x0002,(unsigned long)PLD_RTCCR);
47 while(inw((unsigned long)PLD_RTCCR));
50 outw(0x0000,(unsigned long)PLD_RTCRSTODT);
55 in_byte_rtc(unsigned int reg_addr)
60 outw(0x0001,(unsigned long)PLD_RTCRSTODT);
62 outw((reg_addr&0xff),(unsigned long)PLD_RTCRDDATA);
64 outw(0x0001,(unsigned long)PLD_RTCCR);
66 while(inw((unsigned long)PLD_RTCCR));
69 retval=(inw((unsigned long)PLD_RTCRDDATA) & 0xff00)>>8;
72 outw(0x0000,(unsigned long)PLD_RTCRSTODT);
82 out_byte_rtc(0x8e,0x00);
85 /* Disable writing. */
90 out_byte_rtc(0x8e,0x80);
95 /* Read a byte from the selected register in the DS1302. */
98 ds1302_readreg(int reg)
102 x=in_byte_rtc((0x81 | (reg << 1))); /* read register */
107 /* Write a byte to the selected register. */
110 ds1302_writereg(int reg, unsigned char val)
113 out_byte_rtc((0x80 | (reg << 1)),val);
118 get_rtc_time(struct rtc_time *rtc_tm)
122 local_irq_save(flags);
125 rtc_tm->tm_sec = CMOS_READ(RTC_SECONDS);
126 rtc_tm->tm_min = CMOS_READ(RTC_MINUTES);
127 rtc_tm->tm_hour = CMOS_READ(RTC_HOURS);
128 rtc_tm->tm_mday = CMOS_READ(RTC_DAY_OF_MONTH);
129 rtc_tm->tm_mon = CMOS_READ(RTC_MONTH);
130 rtc_tm->tm_year = CMOS_READ(RTC_YEAR);
132 local_irq_restore(flags);
134 BCD_TO_BIN(rtc_tm->tm_sec);
135 BCD_TO_BIN(rtc_tm->tm_min);
136 BCD_TO_BIN(rtc_tm->tm_hour);
137 BCD_TO_BIN(rtc_tm->tm_mday);
138 BCD_TO_BIN(rtc_tm->tm_mon);
139 BCD_TO_BIN(rtc_tm->tm_year);
142 * Account for differences between how the RTC uses the values
143 * and how they are defined in a struct rtc_time;
146 if (rtc_tm->tm_year <= 69)
147 rtc_tm->tm_year += 100;
152 static unsigned char days_in_mo[] =
153 {0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};
155 /* ioctl that supports RTC_RD_TIME and RTC_SET_TIME (read and set time/date). */
158 rtc_ioctl(struct inode *inode, struct file *file, unsigned int cmd,
164 case RTC_RD_TIME: /* read the time/date from RTC */
166 struct rtc_time rtc_tm;
168 memset(&rtc_tm, 0, sizeof (struct rtc_time));
169 get_rtc_time(&rtc_tm);
170 if (copy_to_user((struct rtc_time*)arg, &rtc_tm, sizeof(struct rtc_time)))
175 case RTC_SET_TIME: /* set the RTC */
177 struct rtc_time rtc_tm;
178 unsigned char mon, day, hrs, min, sec, leap_yr;
181 if (!capable(CAP_SYS_TIME))
184 if (copy_from_user(&rtc_tm, (struct rtc_time*)arg, sizeof(struct rtc_time)))
187 yrs = rtc_tm.tm_year + 1900;
188 mon = rtc_tm.tm_mon + 1; /* tm_mon starts at zero */
189 day = rtc_tm.tm_mday;
190 hrs = rtc_tm.tm_hour;
195 if ((yrs < 1970) || (yrs > 2069))
198 leap_yr = ((!(yrs % 4) && (yrs % 100)) || !(yrs % 400));
200 if ((mon > 12) || (day == 0))
203 if (day > (days_in_mo[mon] + ((mon == 2) && leap_yr)))
206 if ((hrs >= 24) || (min >= 60) || (sec >= 60))
210 yrs -= 2000; /* RTC (0, 1, ... 69) */
212 yrs -= 1900; /* RTC (70, 71, ... 99) */
221 local_irq_save(flags);
223 CMOS_WRITE(yrs, RTC_YEAR);
224 CMOS_WRITE(mon, RTC_MONTH);
225 CMOS_WRITE(day, RTC_DAY_OF_MONTH);
226 CMOS_WRITE(hrs, RTC_HOURS);
227 CMOS_WRITE(min, RTC_MINUTES);
228 CMOS_WRITE(sec, RTC_SECONDS);
229 local_irq_restore(flags);
231 /* Notice that at this point, the RTC is updated but
232 * the kernel is still running with the old time.
233 * You need to set that separately with settimeofday
239 case RTC_SET_CHARGE: /* set the RTC TRICKLE CHARGE register */
243 if (!capable(CAP_SYS_TIME))
246 if(copy_from_user(&tcs_val, (int*)arg, sizeof(int)))
249 tcs_val = RTC_TCR_PATTERN | (tcs_val & 0x0F);
250 ds1302_writereg(RTC_TRICKLECHARGER, tcs_val);
259 get_rtc_status(char *buf)
269 * There is no way to tell if the luser has the RTC set for local
270 * time or for Universal Standard Time (GMT). Probably local though.
274 "rtc_time\t: %02d:%02d:%02d\n"
275 "rtc_date\t: %04d-%02d-%02d\n",
276 tm.tm_hour, tm.tm_min, tm.tm_sec,
277 tm.tm_year + 1900, tm.tm_mon + 1, tm.tm_mday);
283 /* The various file operations we support. */
285 static const struct file_operations rtc_fops = {
286 .owner = THIS_MODULE,
290 /* Probe for the chip by writing something to its RAM and try reading it back. */
292 #define MAGIC_PATTERN 0x42
297 int retval, res, baur;
299 baur=(boot_cpu_data.bus_clock/(2*1000*1000));
301 printk("%s: Set PLD_RTCBAUR = %d\n", ds1302_name,baur);
303 outw(0x0000,(unsigned long)PLD_RTCCR);
304 outw(0x0000,(unsigned long)PLD_RTCRSTODT);
305 outw(baur,(unsigned long)PLD_RTCBAUR);
307 /* Try to talk to timekeeper. */
310 /* write RAM byte 0 */
311 /* write something magic */
312 out_byte_rtc(0xc0,MAGIC_PATTERN);
314 /* read RAM byte 0 */
315 if((res = in_byte_rtc(0xc1)) == MAGIC_PATTERN) {
318 printk("%s: RTC found.\n", ds1302_name);
323 printk("%s: RTC not found.\n", ds1302_name);
331 /* Just probe for the RTC and register the device to handle the ioctl needed. */
336 if (!ds1302_probe()) {
342 static int __init ds1302_register(void)
345 if (register_chrdev(RTC_MAJOR_NR, ds1302_name, &rtc_fops)) {
346 printk(KERN_INFO "%s: unable to get major %d for rtc\n",
347 ds1302_name, RTC_MAJOR_NR);
353 module_init(ds1302_register);