2 * Driver for NEC VR4100 series Real Time Clock unit.
4 * Copyright (C) 2003-2008 Yoichi Yuasa <yuasa@linux-mips.org>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 #include <linux/err.h>
22 #include <linux/init.h>
24 #include <linux/ioport.h>
25 #include <linux/interrupt.h>
26 #include <linux/module.h>
27 #include <linux/platform_device.h>
28 #include <linux/rtc.h>
29 #include <linux/spinlock.h>
30 #include <linux/types.h>
31 #include <linux/uaccess.h>
32 #include <linux/log2.h>
34 #include <asm/div64.h>
36 MODULE_AUTHOR("Yoichi Yuasa <yuasa@linux-mips.org>");
37 MODULE_DESCRIPTION("NEC VR4100 series RTC driver");
38 MODULE_LICENSE("GPL v2");
41 #define ETIMELREG 0x00
42 #define ETIMEMREG 0x02
43 #define ETIMEHREG 0x04
49 #define RTCL1LREG 0x10
50 #define RTCL1HREG 0x12
51 #define RTCL1CNTLREG 0x14
52 #define RTCL1CNTHREG 0x16
53 #define RTCL2LREG 0x18
54 #define RTCL2HREG 0x1a
55 #define RTCL2CNTLREG 0x1c
56 #define RTCL2CNTHREG 0x1e
61 #define TCLKCNTLREG 0x04
62 #define TCLKCNTHREG 0x06
64 #define RTCINTREG 0x1e
65 #define TCLOCK_INT 0x08
66 #define RTCLONG2_INT 0x04
67 #define RTCLONG1_INT 0x02
68 #define ELAPSEDTIME_INT 0x01
70 #define RTC_FREQUENCY 32768
71 #define MAX_PERIODIC_RATE 6553
73 static void __iomem
*rtc1_base
;
74 static void __iomem
*rtc2_base
;
76 #define rtc1_read(offset) readw(rtc1_base + (offset))
77 #define rtc1_write(offset, value) writew((value), rtc1_base + (offset))
79 #define rtc2_read(offset) readw(rtc2_base + (offset))
80 #define rtc2_write(offset, value) writew((value), rtc2_base + (offset))
82 static unsigned long epoch
= 1970; /* Jan 1 1970 00:00:00 */
84 static DEFINE_SPINLOCK(rtc_lock
);
85 static char rtc_name
[] = "RTC";
86 static unsigned long periodic_count
;
87 static unsigned int alarm_enabled
;
91 static inline time64_t
read_elapsed_second(void)
94 unsigned long first_low
, first_mid
, first_high
;
96 unsigned long second_low
, second_mid
, second_high
;
99 first_low
= rtc1_read(ETIMELREG
);
100 first_mid
= rtc1_read(ETIMEMREG
);
101 first_high
= rtc1_read(ETIMEHREG
);
102 second_low
= rtc1_read(ETIMELREG
);
103 second_mid
= rtc1_read(ETIMEMREG
);
104 second_high
= rtc1_read(ETIMEHREG
);
105 } while (first_low
!= second_low
|| first_mid
!= second_mid
||
106 first_high
!= second_high
);
108 return ((u64
)first_high
<< 17) | (first_mid
<< 1) | (first_low
>> 15);
111 static inline void write_elapsed_second(time64_t sec
)
113 spin_lock_irq(&rtc_lock
);
115 rtc1_write(ETIMELREG
, (uint16_t)(sec
<< 15));
116 rtc1_write(ETIMEMREG
, (uint16_t)(sec
>> 1));
117 rtc1_write(ETIMEHREG
, (uint16_t)(sec
>> 17));
119 spin_unlock_irq(&rtc_lock
);
122 static int vr41xx_rtc_read_time(struct device
*dev
, struct rtc_time
*time
)
124 time64_t epoch_sec
, elapsed_sec
;
126 epoch_sec
= mktime64(epoch
, 1, 1, 0, 0, 0);
127 elapsed_sec
= read_elapsed_second();
129 rtc_time64_to_tm(epoch_sec
+ elapsed_sec
, time
);
134 static int vr41xx_rtc_set_time(struct device
*dev
, struct rtc_time
*time
)
136 time64_t epoch_sec
, current_sec
;
138 epoch_sec
= mktime64(epoch
, 1, 1, 0, 0, 0);
139 current_sec
= rtc_tm_to_time64(time
);
141 write_elapsed_second(current_sec
- epoch_sec
);
146 static int vr41xx_rtc_read_alarm(struct device
*dev
, struct rtc_wkalrm
*wkalrm
)
148 unsigned long low
, mid
, high
;
149 struct rtc_time
*time
= &wkalrm
->time
;
151 spin_lock_irq(&rtc_lock
);
153 low
= rtc1_read(ECMPLREG
);
154 mid
= rtc1_read(ECMPMREG
);
155 high
= rtc1_read(ECMPHREG
);
156 wkalrm
->enabled
= alarm_enabled
;
158 spin_unlock_irq(&rtc_lock
);
160 rtc_time64_to_tm((high
<< 17) | (mid
<< 1) | (low
>> 15), time
);
165 static int vr41xx_rtc_set_alarm(struct device
*dev
, struct rtc_wkalrm
*wkalrm
)
169 alarm_sec
= rtc_tm_to_time64(&wkalrm
->time
);
171 spin_lock_irq(&rtc_lock
);
174 disable_irq(aie_irq
);
176 rtc1_write(ECMPLREG
, (uint16_t)(alarm_sec
<< 15));
177 rtc1_write(ECMPMREG
, (uint16_t)(alarm_sec
>> 1));
178 rtc1_write(ECMPHREG
, (uint16_t)(alarm_sec
>> 17));
183 alarm_enabled
= wkalrm
->enabled
;
185 spin_unlock_irq(&rtc_lock
);
190 static int vr41xx_rtc_ioctl(struct device
*dev
, unsigned int cmd
, unsigned long arg
)
194 return put_user(epoch
, (unsigned long __user
*)arg
);
196 /* Doesn't support before 1900 */
208 static int vr41xx_rtc_alarm_irq_enable(struct device
*dev
, unsigned int enabled
)
210 spin_lock_irq(&rtc_lock
);
212 if (!alarm_enabled
) {
218 disable_irq(aie_irq
);
222 spin_unlock_irq(&rtc_lock
);
226 static irqreturn_t
elapsedtime_interrupt(int irq
, void *dev_id
)
228 struct platform_device
*pdev
= (struct platform_device
*)dev_id
;
229 struct rtc_device
*rtc
= platform_get_drvdata(pdev
);
231 rtc2_write(RTCINTREG
, ELAPSEDTIME_INT
);
233 rtc_update_irq(rtc
, 1, RTC_AF
);
238 static irqreturn_t
rtclong1_interrupt(int irq
, void *dev_id
)
240 struct platform_device
*pdev
= (struct platform_device
*)dev_id
;
241 struct rtc_device
*rtc
= platform_get_drvdata(pdev
);
242 unsigned long count
= periodic_count
;
244 rtc2_write(RTCINTREG
, RTCLONG1_INT
);
246 rtc1_write(RTCL1LREG
, count
);
247 rtc1_write(RTCL1HREG
, count
>> 16);
249 rtc_update_irq(rtc
, 1, RTC_PF
);
254 static const struct rtc_class_ops vr41xx_rtc_ops
= {
255 .ioctl
= vr41xx_rtc_ioctl
,
256 .read_time
= vr41xx_rtc_read_time
,
257 .set_time
= vr41xx_rtc_set_time
,
258 .read_alarm
= vr41xx_rtc_read_alarm
,
259 .set_alarm
= vr41xx_rtc_set_alarm
,
260 .alarm_irq_enable
= vr41xx_rtc_alarm_irq_enable
,
263 static int rtc_probe(struct platform_device
*pdev
)
265 struct resource
*res
;
266 struct rtc_device
*rtc
;
269 if (pdev
->num_resources
!= 4)
272 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
276 rtc1_base
= devm_ioremap(&pdev
->dev
, res
->start
, resource_size(res
));
280 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 1);
283 goto err_rtc1_iounmap
;
286 rtc2_base
= devm_ioremap(&pdev
->dev
, res
->start
, resource_size(res
));
289 goto err_rtc1_iounmap
;
292 rtc
= devm_rtc_allocate_device(&pdev
->dev
);
294 retval
= PTR_ERR(rtc
);
295 goto err_iounmap_all
;
298 rtc
->ops
= &vr41xx_rtc_ops
;
300 /* 48-bit counter at 32.768 kHz */
301 rtc
->range_max
= (1ULL << 33) - 1;
302 rtc
->max_user_freq
= MAX_PERIODIC_RATE
;
304 spin_lock_irq(&rtc_lock
);
306 rtc1_write(ECMPLREG
, 0);
307 rtc1_write(ECMPMREG
, 0);
308 rtc1_write(ECMPHREG
, 0);
309 rtc1_write(RTCL1LREG
, 0);
310 rtc1_write(RTCL1HREG
, 0);
312 spin_unlock_irq(&rtc_lock
);
314 aie_irq
= platform_get_irq(pdev
, 0);
317 goto err_iounmap_all
;
320 retval
= devm_request_irq(&pdev
->dev
, aie_irq
, elapsedtime_interrupt
, 0,
321 "elapsed_time", pdev
);
323 goto err_iounmap_all
;
325 pie_irq
= platform_get_irq(pdev
, 1);
328 goto err_iounmap_all
;
331 retval
= devm_request_irq(&pdev
->dev
, pie_irq
, rtclong1_interrupt
, 0,
334 goto err_iounmap_all
;
336 platform_set_drvdata(pdev
, rtc
);
338 disable_irq(aie_irq
);
339 disable_irq(pie_irq
);
341 dev_info(&pdev
->dev
, "Real Time Clock of NEC VR4100 series\n");
343 retval
= rtc_register_device(rtc
);
345 goto err_iounmap_all
;
358 /* work with hotplug and coldplug */
359 MODULE_ALIAS("platform:RTC");
361 static struct platform_driver rtc_platform_driver
= {
368 module_platform_driver(rtc_platform_driver
);