2 * RTC subsystem, dev interface
4 * Copyright (C) 2005 Tower Technologies
5 * Author: Alessandro Zummo <a.zummo@towertech.it>
7 * based on arch/arm/common/rtctime.c
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
14 #include <linux/module.h>
15 #include <linux/rtc.h>
17 static struct class *rtc_dev_class
;
18 static dev_t rtc_devt
;
20 #define RTC_DEV_MAX 16 /* 16 RTCs should be enough for everyone... */
22 static int rtc_dev_open(struct inode
*inode
, struct file
*file
)
25 struct rtc_device
*rtc
= container_of(inode
->i_cdev
,
26 struct rtc_device
, char_dev
);
27 struct rtc_class_ops
*ops
= rtc
->ops
;
29 /* We keep the lock as long as the device is in use
30 * and return immediately if busy
32 if (!(mutex_trylock(&rtc
->char_lock
)))
35 file
->private_data
= &rtc
->class_dev
;
37 err
= ops
->open
? ops
->open(rtc
->class_dev
.dev
) : 0;
39 spin_lock_irq(&rtc
->irq_lock
);
41 spin_unlock_irq(&rtc
->irq_lock
);
46 /* something has gone wrong, release the lock */
47 mutex_unlock(&rtc
->char_lock
);
51 #ifdef CONFIG_RTC_INTF_DEV_UIE_EMUL
53 * Routine to poll RTC seconds field for change as often as possible,
54 * after first RTC_UIE use timer to reduce polling
56 static void rtc_uie_task(void *data
)
58 struct rtc_device
*rtc
= data
;
63 err
= rtc_read_time(&rtc
->class_dev
, &tm
);
64 spin_lock_irq(&rtc
->irq_lock
);
65 if (rtc
->stop_uie_polling
|| err
) {
66 rtc
->uie_task_active
= 0;
67 } else if (rtc
->oldsecs
!= tm
.tm_sec
) {
68 num
= (tm
.tm_sec
+ 60 - rtc
->oldsecs
) % 60;
69 rtc
->oldsecs
= tm
.tm_sec
;
70 rtc
->uie_timer
.expires
= jiffies
+ HZ
- (HZ
/10);
71 rtc
->uie_timer_active
= 1;
72 rtc
->uie_task_active
= 0;
73 add_timer(&rtc
->uie_timer
);
74 } else if (schedule_work(&rtc
->uie_task
) == 0) {
75 rtc
->uie_task_active
= 0;
77 spin_unlock_irq(&rtc
->irq_lock
);
79 rtc_update_irq(&rtc
->class_dev
, num
, RTC_UF
| RTC_IRQF
);
82 static void rtc_uie_timer(unsigned long data
)
84 struct rtc_device
*rtc
= (struct rtc_device
*)data
;
87 spin_lock_irqsave(&rtc
->irq_lock
, flags
);
88 rtc
->uie_timer_active
= 0;
89 rtc
->uie_task_active
= 1;
90 if ((schedule_work(&rtc
->uie_task
) == 0))
91 rtc
->uie_task_active
= 0;
92 spin_unlock_irqrestore(&rtc
->irq_lock
, flags
);
95 static void clear_uie(struct rtc_device
*rtc
)
97 spin_lock_irq(&rtc
->irq_lock
);
98 if (rtc
->irq_active
) {
99 rtc
->stop_uie_polling
= 1;
100 if (rtc
->uie_timer_active
) {
101 spin_unlock_irq(&rtc
->irq_lock
);
102 del_timer_sync(&rtc
->uie_timer
);
103 spin_lock_irq(&rtc
->irq_lock
);
104 rtc
->uie_timer_active
= 0;
106 if (rtc
->uie_task_active
) {
107 spin_unlock_irq(&rtc
->irq_lock
);
108 flush_scheduled_work();
109 spin_lock_irq(&rtc
->irq_lock
);
113 spin_unlock_irq(&rtc
->irq_lock
);
116 static int set_uie(struct rtc_device
*rtc
)
121 err
= rtc_read_time(&rtc
->class_dev
, &tm
);
124 spin_lock_irq(&rtc
->irq_lock
);
125 if (!rtc
->irq_active
) {
127 rtc
->stop_uie_polling
= 0;
128 rtc
->oldsecs
= tm
.tm_sec
;
129 rtc
->uie_task_active
= 1;
130 if (schedule_work(&rtc
->uie_task
) == 0)
131 rtc
->uie_task_active
= 0;
134 spin_unlock_irq(&rtc
->irq_lock
);
137 #endif /* CONFIG_RTC_INTF_DEV_UIE_EMUL */
140 rtc_dev_read(struct file
*file
, char __user
*buf
, size_t count
, loff_t
*ppos
)
142 struct rtc_device
*rtc
= to_rtc_device(file
->private_data
);
144 DECLARE_WAITQUEUE(wait
, current
);
148 if (count
!= sizeof(unsigned int) && count
< sizeof(unsigned long))
151 add_wait_queue(&rtc
->irq_queue
, &wait
);
153 __set_current_state(TASK_INTERRUPTIBLE
);
155 spin_lock_irq(&rtc
->irq_lock
);
156 data
= rtc
->irq_data
;
158 spin_unlock_irq(&rtc
->irq_lock
);
164 if (file
->f_flags
& O_NONBLOCK
) {
168 if (signal_pending(current
)) {
174 set_current_state(TASK_RUNNING
);
175 remove_wait_queue(&rtc
->irq_queue
, &wait
);
178 /* Check for any data updates */
179 if (rtc
->ops
->read_callback
)
180 data
= rtc
->ops
->read_callback(rtc
->class_dev
.dev
,
183 if (sizeof(int) != sizeof(long) &&
184 count
== sizeof(unsigned int))
185 ret
= put_user(data
, (unsigned int __user
*)buf
) ?:
186 sizeof(unsigned int);
188 ret
= put_user(data
, (unsigned long __user
*)buf
) ?:
189 sizeof(unsigned long);
194 static unsigned int rtc_dev_poll(struct file
*file
, poll_table
*wait
)
196 struct rtc_device
*rtc
= to_rtc_device(file
->private_data
);
199 poll_wait(file
, &rtc
->irq_queue
, wait
);
201 data
= rtc
->irq_data
;
203 return (data
!= 0) ? (POLLIN
| POLLRDNORM
) : 0;
206 static int rtc_dev_ioctl(struct inode
*inode
, struct file
*file
,
207 unsigned int cmd
, unsigned long arg
)
210 struct class_device
*class_dev
= file
->private_data
;
211 struct rtc_device
*rtc
= to_rtc_device(class_dev
);
212 struct rtc_class_ops
*ops
= rtc
->ops
;
214 struct rtc_wkalrm alarm
;
215 void __user
*uarg
= (void __user
*) arg
;
217 /* check that the calles has appropriate permissions
218 * for certain ioctls. doing this check here is useful
219 * to avoid duplicate code in each driver.
224 if (!capable(CAP_SYS_TIME
))
229 if (arg
> rtc
->max_user_freq
&& !capable(CAP_SYS_RESOURCE
))
234 if (!capable(CAP_SYS_RESOURCE
))
239 /* avoid conflicting IRQ users */
240 if (cmd
== RTC_PIE_ON
|| cmd
== RTC_PIE_OFF
|| cmd
== RTC_IRQP_SET
) {
241 spin_lock(&rtc
->irq_task_lock
);
244 spin_unlock(&rtc
->irq_task_lock
);
250 /* try the driver's ioctl interface */
252 err
= ops
->ioctl(class_dev
->dev
, cmd
, arg
);
253 if (err
!= -ENOIOCTLCMD
)
257 /* if the driver does not provide the ioctl interface
258 * or if that particular ioctl was not implemented
259 * (-ENOIOCTLCMD), we will try to emulate here.
264 err
= rtc_read_alarm(class_dev
, &alarm
);
268 if (copy_to_user(uarg
, &alarm
.time
, sizeof(tm
)))
273 if (copy_from_user(&alarm
.time
, uarg
, sizeof(tm
)))
278 alarm
.time
.tm_mday
= -1;
279 alarm
.time
.tm_mon
= -1;
280 alarm
.time
.tm_year
= -1;
281 alarm
.time
.tm_wday
= -1;
282 alarm
.time
.tm_yday
= -1;
283 alarm
.time
.tm_isdst
= -1;
284 err
= rtc_set_alarm(class_dev
, &alarm
);
288 err
= rtc_read_time(class_dev
, &tm
);
292 if (copy_to_user(uarg
, &tm
, sizeof(tm
)))
297 if (copy_from_user(&tm
, uarg
, sizeof(tm
)))
300 err
= rtc_set_time(class_dev
, &tm
);
306 * There were no RTC clocks before 1900.
318 err
= put_user(rtc_epoch
, (unsigned long __user
*)uarg
);
322 if (copy_from_user(&alarm
, uarg
, sizeof(alarm
)))
325 err
= rtc_set_alarm(class_dev
, &alarm
);
329 err
= rtc_read_alarm(class_dev
, &alarm
);
333 if (copy_to_user(uarg
, &alarm
, sizeof(alarm
)))
337 #ifdef CONFIG_RTC_INTF_DEV_UIE_EMUL
353 static int rtc_dev_release(struct inode
*inode
, struct file
*file
)
355 struct rtc_device
*rtc
= to_rtc_device(file
->private_data
);
357 #ifdef CONFIG_RTC_INTF_DEV_UIE_EMUL
360 if (rtc
->ops
->release
)
361 rtc
->ops
->release(rtc
->class_dev
.dev
);
363 mutex_unlock(&rtc
->char_lock
);
367 static int rtc_dev_fasync(int fd
, struct file
*file
, int on
)
369 struct rtc_device
*rtc
= to_rtc_device(file
->private_data
);
370 return fasync_helper(fd
, file
, on
, &rtc
->async_queue
);
373 static struct file_operations rtc_dev_fops
= {
374 .owner
= THIS_MODULE
,
376 .read
= rtc_dev_read
,
377 .poll
= rtc_dev_poll
,
378 .ioctl
= rtc_dev_ioctl
,
379 .open
= rtc_dev_open
,
380 .release
= rtc_dev_release
,
381 .fasync
= rtc_dev_fasync
,
384 /* insertion/removal hooks */
386 static int rtc_dev_add_device(struct class_device
*class_dev
,
387 struct class_interface
*class_intf
)
390 struct rtc_device
*rtc
= to_rtc_device(class_dev
);
392 if (rtc
->id
>= RTC_DEV_MAX
) {
393 dev_err(class_dev
->dev
, "too many RTCs\n");
397 mutex_init(&rtc
->char_lock
);
398 spin_lock_init(&rtc
->irq_lock
);
399 init_waitqueue_head(&rtc
->irq_queue
);
400 #ifdef CONFIG_RTC_INTF_DEV_UIE_EMUL
401 INIT_WORK(&rtc
->uie_task
, rtc_uie_task
, rtc
);
402 setup_timer(&rtc
->uie_timer
, rtc_uie_timer
, (unsigned long)rtc
);
405 cdev_init(&rtc
->char_dev
, &rtc_dev_fops
);
406 rtc
->char_dev
.owner
= rtc
->owner
;
408 if (cdev_add(&rtc
->char_dev
, MKDEV(MAJOR(rtc_devt
), rtc
->id
), 1)) {
409 cdev_del(&rtc
->char_dev
);
410 dev_err(class_dev
->dev
,
411 "failed to add char device %d:%d\n",
412 MAJOR(rtc_devt
), rtc
->id
);
416 rtc
->rtc_dev
= class_device_create(rtc_dev_class
, NULL
,
417 MKDEV(MAJOR(rtc_devt
), rtc
->id
),
418 class_dev
->dev
, "rtc%d", rtc
->id
);
419 if (IS_ERR(rtc
->rtc_dev
)) {
420 dev_err(class_dev
->dev
, "cannot create rtc_dev device\n");
421 err
= PTR_ERR(rtc
->rtc_dev
);
425 dev_info(class_dev
->dev
, "rtc intf: dev (%d:%d)\n",
426 MAJOR(rtc
->rtc_dev
->devt
),
427 MINOR(rtc
->rtc_dev
->devt
));
433 cdev_del(&rtc
->char_dev
);
437 static void rtc_dev_remove_device(struct class_device
*class_dev
,
438 struct class_interface
*class_intf
)
440 struct rtc_device
*rtc
= to_rtc_device(class_dev
);
443 dev_dbg(class_dev
->dev
, "removing char %d:%d\n",
444 MAJOR(rtc
->rtc_dev
->devt
),
445 MINOR(rtc
->rtc_dev
->devt
));
447 class_device_unregister(rtc
->rtc_dev
);
448 cdev_del(&rtc
->char_dev
);
452 /* interface registration */
454 static struct class_interface rtc_dev_interface
= {
455 .add
= &rtc_dev_add_device
,
456 .remove
= &rtc_dev_remove_device
,
459 static int __init
rtc_dev_init(void)
463 rtc_dev_class
= class_create(THIS_MODULE
, "rtc-dev");
464 if (IS_ERR(rtc_dev_class
))
465 return PTR_ERR(rtc_dev_class
);
467 err
= alloc_chrdev_region(&rtc_devt
, 0, RTC_DEV_MAX
, "rtc");
469 printk(KERN_ERR
"%s: failed to allocate char dev region\n",
471 goto err_destroy_class
;
474 err
= rtc_interface_register(&rtc_dev_interface
);
476 printk(KERN_ERR
"%s: failed to register the interface\n",
478 goto err_unregister_chrdev
;
483 err_unregister_chrdev
:
484 unregister_chrdev_region(rtc_devt
, RTC_DEV_MAX
);
487 class_destroy(rtc_dev_class
);
492 static void __exit
rtc_dev_exit(void)
494 class_interface_unregister(&rtc_dev_interface
);
495 class_destroy(rtc_dev_class
);
496 unregister_chrdev_region(rtc_devt
, RTC_DEV_MAX
);
499 module_init(rtc_dev_init
);
500 module_exit(rtc_dev_exit
);
502 MODULE_AUTHOR("Alessandro Zummo <a.zummo@towertech.it>");
503 MODULE_DESCRIPTION("RTC class dev interface");
504 MODULE_LICENSE("GPL");