2006-03-27 11:16:41 +02:00
|
|
|
/*
|
|
|
|
* RTC subsystem, dev interface
|
|
|
|
*
|
|
|
|
* Copyright (C) 2005 Tower Technologies
|
|
|
|
* Author: Alessandro Zummo <a.zummo@towertech.it>
|
|
|
|
*
|
|
|
|
* based on arch/arm/common/rtctime.c
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
|
|
* published by the Free Software Foundation.
|
|
|
|
*/
|
|
|
|
|
2013-02-22 01:45:23 +01:00
|
|
|
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
|
|
|
|
|
2006-03-27 11:16:41 +02:00
|
|
|
#include <linux/module.h>
|
|
|
|
#include <linux/rtc.h>
|
2009-10-07 15:09:06 +02:00
|
|
|
#include <linux/sched.h>
|
2007-05-08 09:33:27 +02:00
|
|
|
#include "rtc-core.h"
|
2006-03-27 11:16:41 +02:00
|
|
|
|
|
|
|
static dev_t rtc_devt;
|
|
|
|
|
|
|
|
#define RTC_DEV_MAX 16 /* 16 RTCs should be enough for everyone... */
|
|
|
|
|
|
|
|
static int rtc_dev_open(struct inode *inode, struct file *file)
|
|
|
|
{
|
|
|
|
int err;
|
|
|
|
struct rtc_device *rtc = container_of(inode->i_cdev,
|
|
|
|
struct rtc_device, char_dev);
|
2006-10-01 08:28:17 +02:00
|
|
|
const struct rtc_class_ops *ops = rtc->ops;
|
2006-03-27 11:16:41 +02:00
|
|
|
|
2008-08-13 00:08:41 +02:00
|
|
|
if (test_and_set_bit_lock(RTC_DEV_BUSY, &rtc->flags))
|
|
|
|
return -EBUSY;
|
2006-03-27 11:16:41 +02:00
|
|
|
|
2007-05-08 09:33:30 +02:00
|
|
|
file->private_data = rtc;
|
2006-03-27 11:16:41 +02:00
|
|
|
|
2007-05-08 09:33:40 +02:00
|
|
|
err = ops->open ? ops->open(rtc->dev.parent) : 0;
|
2006-03-27 11:16:41 +02:00
|
|
|
if (err == 0) {
|
|
|
|
spin_lock_irq(&rtc->irq_lock);
|
|
|
|
rtc->irq_data = 0;
|
|
|
|
spin_unlock_irq(&rtc->irq_lock);
|
|
|
|
|
2008-08-13 00:08:41 +02:00
|
|
|
return 0;
|
2006-03-27 11:16:41 +02:00
|
|
|
}
|
|
|
|
|
2007-11-29 01:22:03 +01:00
|
|
|
/* something has gone wrong */
|
2007-12-05 08:45:05 +01:00
|
|
|
clear_bit_unlock(RTC_DEV_BUSY, &rtc->flags);
|
2006-03-27 11:16:41 +02:00
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2011-02-12 02:45:40 +01:00
|
|
|
#ifdef CONFIG_RTC_INTF_DEV_UIE_EMUL
|
|
|
|
/*
|
|
|
|
* Routine to poll RTC seconds field for change as often as possible,
|
|
|
|
* after first RTC_UIE use timer to reduce polling
|
|
|
|
*/
|
|
|
|
static void rtc_uie_task(struct work_struct *work)
|
|
|
|
{
|
|
|
|
struct rtc_device *rtc =
|
|
|
|
container_of(work, struct rtc_device, uie_task);
|
|
|
|
struct rtc_time tm;
|
|
|
|
int num = 0;
|
|
|
|
int err;
|
|
|
|
|
|
|
|
err = rtc_read_time(rtc, &tm);
|
|
|
|
|
|
|
|
spin_lock_irq(&rtc->irq_lock);
|
|
|
|
if (rtc->stop_uie_polling || err) {
|
|
|
|
rtc->uie_task_active = 0;
|
|
|
|
} else if (rtc->oldsecs != tm.tm_sec) {
|
|
|
|
num = (tm.tm_sec + 60 - rtc->oldsecs) % 60;
|
|
|
|
rtc->oldsecs = tm.tm_sec;
|
|
|
|
rtc->uie_timer.expires = jiffies + HZ - (HZ/10);
|
|
|
|
rtc->uie_timer_active = 1;
|
|
|
|
rtc->uie_task_active = 0;
|
|
|
|
add_timer(&rtc->uie_timer);
|
|
|
|
} else if (schedule_work(&rtc->uie_task) == 0) {
|
|
|
|
rtc->uie_task_active = 0;
|
|
|
|
}
|
|
|
|
spin_unlock_irq(&rtc->irq_lock);
|
|
|
|
if (num)
|
2011-02-12 03:15:23 +01:00
|
|
|
rtc_handle_legacy_irq(rtc, num, RTC_UF);
|
2011-02-12 02:45:40 +01:00
|
|
|
}
|
|
|
|
static void rtc_uie_timer(unsigned long data)
|
|
|
|
{
|
|
|
|
struct rtc_device *rtc = (struct rtc_device *)data;
|
|
|
|
unsigned long flags;
|
|
|
|
|
|
|
|
spin_lock_irqsave(&rtc->irq_lock, flags);
|
|
|
|
rtc->uie_timer_active = 0;
|
|
|
|
rtc->uie_task_active = 1;
|
|
|
|
if ((schedule_work(&rtc->uie_task) == 0))
|
|
|
|
rtc->uie_task_active = 0;
|
|
|
|
spin_unlock_irqrestore(&rtc->irq_lock, flags);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int clear_uie(struct rtc_device *rtc)
|
|
|
|
{
|
|
|
|
spin_lock_irq(&rtc->irq_lock);
|
|
|
|
if (rtc->uie_irq_active) {
|
|
|
|
rtc->stop_uie_polling = 1;
|
|
|
|
if (rtc->uie_timer_active) {
|
|
|
|
spin_unlock_irq(&rtc->irq_lock);
|
|
|
|
del_timer_sync(&rtc->uie_timer);
|
|
|
|
spin_lock_irq(&rtc->irq_lock);
|
|
|
|
rtc->uie_timer_active = 0;
|
|
|
|
}
|
|
|
|
if (rtc->uie_task_active) {
|
|
|
|
spin_unlock_irq(&rtc->irq_lock);
|
|
|
|
flush_scheduled_work();
|
|
|
|
spin_lock_irq(&rtc->irq_lock);
|
|
|
|
}
|
|
|
|
rtc->uie_irq_active = 0;
|
|
|
|
}
|
|
|
|
spin_unlock_irq(&rtc->irq_lock);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int set_uie(struct rtc_device *rtc)
|
|
|
|
{
|
|
|
|
struct rtc_time tm;
|
|
|
|
int err;
|
|
|
|
|
|
|
|
err = rtc_read_time(rtc, &tm);
|
|
|
|
if (err)
|
|
|
|
return err;
|
|
|
|
spin_lock_irq(&rtc->irq_lock);
|
|
|
|
if (!rtc->uie_irq_active) {
|
|
|
|
rtc->uie_irq_active = 1;
|
|
|
|
rtc->stop_uie_polling = 0;
|
|
|
|
rtc->oldsecs = tm.tm_sec;
|
|
|
|
rtc->uie_task_active = 1;
|
|
|
|
if (schedule_work(&rtc->uie_task) == 0)
|
|
|
|
rtc->uie_task_active = 0;
|
|
|
|
}
|
|
|
|
rtc->irq_data = 0;
|
|
|
|
spin_unlock_irq(&rtc->irq_lock);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int rtc_dev_update_irq_enable_emul(struct rtc_device *rtc, unsigned int enabled)
|
|
|
|
{
|
|
|
|
if (enabled)
|
|
|
|
return set_uie(rtc);
|
|
|
|
else
|
|
|
|
return clear_uie(rtc);
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(rtc_dev_update_irq_enable_emul);
|
|
|
|
|
|
|
|
#endif /* CONFIG_RTC_INTF_DEV_UIE_EMUL */
|
2006-03-27 11:16:41 +02:00
|
|
|
|
|
|
|
static ssize_t
|
|
|
|
rtc_dev_read(struct file *file, char __user *buf, size_t count, loff_t *ppos)
|
|
|
|
{
|
2007-10-16 10:28:17 +02:00
|
|
|
struct rtc_device *rtc = file->private_data;
|
2006-03-27 11:16:41 +02:00
|
|
|
|
|
|
|
DECLARE_WAITQUEUE(wait, current);
|
|
|
|
unsigned long data;
|
|
|
|
ssize_t ret;
|
|
|
|
|
2006-05-01 21:16:16 +02:00
|
|
|
if (count != sizeof(unsigned int) && count < sizeof(unsigned long))
|
2006-03-27 11:16:41 +02:00
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
add_wait_queue(&rtc->irq_queue, &wait);
|
|
|
|
do {
|
|
|
|
__set_current_state(TASK_INTERRUPTIBLE);
|
|
|
|
|
|
|
|
spin_lock_irq(&rtc->irq_lock);
|
|
|
|
data = rtc->irq_data;
|
|
|
|
rtc->irq_data = 0;
|
|
|
|
spin_unlock_irq(&rtc->irq_lock);
|
|
|
|
|
|
|
|
if (data != 0) {
|
|
|
|
ret = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (file->f_flags & O_NONBLOCK) {
|
|
|
|
ret = -EAGAIN;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (signal_pending(current)) {
|
|
|
|
ret = -ERESTARTSYS;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
schedule();
|
|
|
|
} while (1);
|
|
|
|
set_current_state(TASK_RUNNING);
|
|
|
|
remove_wait_queue(&rtc->irq_queue, &wait);
|
|
|
|
|
|
|
|
if (ret == 0) {
|
|
|
|
/* Check for any data updates */
|
|
|
|
if (rtc->ops->read_callback)
|
2007-05-08 09:33:40 +02:00
|
|
|
data = rtc->ops->read_callback(rtc->dev.parent,
|
2006-05-01 21:16:16 +02:00
|
|
|
data);
|
|
|
|
|
|
|
|
if (sizeof(int) != sizeof(long) &&
|
|
|
|
count == sizeof(unsigned int))
|
|
|
|
ret = put_user(data, (unsigned int __user *)buf) ?:
|
|
|
|
sizeof(unsigned int);
|
|
|
|
else
|
|
|
|
ret = put_user(data, (unsigned long __user *)buf) ?:
|
|
|
|
sizeof(unsigned long);
|
2006-03-27 11:16:41 +02:00
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static unsigned int rtc_dev_poll(struct file *file, poll_table *wait)
|
|
|
|
{
|
2007-10-16 10:28:17 +02:00
|
|
|
struct rtc_device *rtc = file->private_data;
|
2006-03-27 11:16:41 +02:00
|
|
|
unsigned long data;
|
|
|
|
|
|
|
|
poll_wait(file, &rtc->irq_queue, wait);
|
|
|
|
|
|
|
|
data = rtc->irq_data;
|
|
|
|
|
|
|
|
return (data != 0) ? (POLLIN | POLLRDNORM) : 0;
|
|
|
|
}
|
|
|
|
|
2008-07-24 06:30:33 +02:00
|
|
|
static long rtc_dev_ioctl(struct file *file,
|
2006-03-27 11:16:41 +02:00
|
|
|
unsigned int cmd, unsigned long arg)
|
|
|
|
{
|
|
|
|
int err = 0;
|
2007-05-08 09:33:30 +02:00
|
|
|
struct rtc_device *rtc = file->private_data;
|
2006-10-01 08:28:17 +02:00
|
|
|
const struct rtc_class_ops *ops = rtc->ops;
|
2006-03-27 11:16:41 +02:00
|
|
|
struct rtc_time tm;
|
|
|
|
struct rtc_wkalrm alarm;
|
|
|
|
void __user *uarg = (void __user *) arg;
|
|
|
|
|
2008-07-24 06:30:33 +02:00
|
|
|
err = mutex_lock_interruptible(&rtc->ops_lock);
|
|
|
|
if (err)
|
2008-07-30 07:33:30 +02:00
|
|
|
return err;
|
2008-07-24 06:30:33 +02:00
|
|
|
|
2006-11-25 20:09:27 +01:00
|
|
|
/* check that the calling task has appropriate permissions
|
2006-06-25 14:48:20 +02:00
|
|
|
* for certain ioctls. doing this check here is useful
|
|
|
|
* to avoid duplicate code in each driver.
|
|
|
|
*/
|
|
|
|
switch (cmd) {
|
|
|
|
case RTC_EPOCH_SET:
|
|
|
|
case RTC_SET_TIME:
|
|
|
|
if (!capable(CAP_SYS_TIME))
|
2008-07-24 06:30:33 +02:00
|
|
|
err = -EACCES;
|
2006-06-25 14:48:20 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
case RTC_IRQP_SET:
|
|
|
|
if (arg > rtc->max_user_freq && !capable(CAP_SYS_RESOURCE))
|
2008-07-24 06:30:33 +02:00
|
|
|
err = -EACCES;
|
2006-06-25 14:48:20 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
case RTC_PIE_ON:
|
2007-10-16 10:28:23 +02:00
|
|
|
if (rtc->irq_freq > rtc->max_user_freq &&
|
|
|
|
!capable(CAP_SYS_RESOURCE))
|
2008-07-24 06:30:33 +02:00
|
|
|
err = -EACCES;
|
2006-06-25 14:48:20 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2008-07-24 06:30:33 +02:00
|
|
|
if (err)
|
|
|
|
goto done;
|
|
|
|
|
2011-02-03 01:55:19 +01:00
|
|
|
/*
|
2008-02-06 10:38:45 +01:00
|
|
|
* Drivers *SHOULD NOT* provide ioctl implementations
|
|
|
|
* for these requests. Instead, provide methods to
|
|
|
|
* support the following code, so that the RTC's main
|
|
|
|
* features are accessible without using ioctls.
|
|
|
|
*
|
|
|
|
* RTC and alarm times will be in UTC, by preference,
|
|
|
|
* but dual-booting with MS-Windows implies RTCs must
|
|
|
|
* use the local wall clock time.
|
2006-03-27 11:16:41 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
switch (cmd) {
|
|
|
|
case RTC_ALM_READ:
|
2008-07-24 06:30:33 +02:00
|
|
|
mutex_unlock(&rtc->ops_lock);
|
|
|
|
|
2007-05-08 09:33:30 +02:00
|
|
|
err = rtc_read_alarm(rtc, &alarm);
|
2006-03-27 11:16:41 +02:00
|
|
|
if (err < 0)
|
|
|
|
return err;
|
|
|
|
|
|
|
|
if (copy_to_user(uarg, &alarm.time, sizeof(tm)))
|
2008-07-24 06:30:33 +02:00
|
|
|
err = -EFAULT;
|
|
|
|
return err;
|
2006-03-27 11:16:41 +02:00
|
|
|
|
|
|
|
case RTC_ALM_SET:
|
2008-07-24 06:30:33 +02:00
|
|
|
mutex_unlock(&rtc->ops_lock);
|
|
|
|
|
2006-03-27 11:16:41 +02:00
|
|
|
if (copy_from_user(&alarm.time, uarg, sizeof(tm)))
|
|
|
|
return -EFAULT;
|
|
|
|
|
|
|
|
alarm.enabled = 0;
|
|
|
|
alarm.pending = 0;
|
|
|
|
alarm.time.tm_wday = -1;
|
|
|
|
alarm.time.tm_yday = -1;
|
|
|
|
alarm.time.tm_isdst = -1;
|
2007-05-08 09:34:07 +02:00
|
|
|
|
|
|
|
/* RTC_ALM_SET alarms may be up to 24 hours in the future.
|
|
|
|
* Rather than expecting every RTC to implement "don't care"
|
|
|
|
* for day/month/year fields, just force the alarm to have
|
|
|
|
* the right values for those fields.
|
|
|
|
*
|
|
|
|
* RTC_WKALM_SET should be used instead. Not only does it
|
|
|
|
* eliminate the need for a separate RTC_AIE_ON call, it
|
|
|
|
* doesn't have the "alarm 23:59:59 in the future" race.
|
|
|
|
*
|
|
|
|
* NOTE: some legacy code may have used invalid fields as
|
|
|
|
* wildcards, exposing hardware "periodic alarm" capabilities.
|
|
|
|
* Not supported here.
|
|
|
|
*/
|
|
|
|
{
|
|
|
|
unsigned long now, then;
|
|
|
|
|
|
|
|
err = rtc_read_time(rtc, &tm);
|
|
|
|
if (err < 0)
|
|
|
|
return err;
|
|
|
|
rtc_tm_to_time(&tm, &now);
|
|
|
|
|
|
|
|
alarm.time.tm_mday = tm.tm_mday;
|
|
|
|
alarm.time.tm_mon = tm.tm_mon;
|
|
|
|
alarm.time.tm_year = tm.tm_year;
|
|
|
|
err = rtc_valid_tm(&alarm.time);
|
|
|
|
if (err < 0)
|
|
|
|
return err;
|
|
|
|
rtc_tm_to_time(&alarm.time, &then);
|
|
|
|
|
|
|
|
/* alarm may need to wrap into tomorrow */
|
|
|
|
if (then < now) {
|
|
|
|
rtc_time_to_tm(now + 24 * 60 * 60, &tm);
|
|
|
|
alarm.time.tm_mday = tm.tm_mday;
|
|
|
|
alarm.time.tm_mon = tm.tm_mon;
|
|
|
|
alarm.time.tm_year = tm.tm_year;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-07-24 06:30:33 +02:00
|
|
|
return rtc_set_alarm(rtc, &alarm);
|
2006-03-27 11:16:41 +02:00
|
|
|
|
|
|
|
case RTC_RD_TIME:
|
2008-07-24 06:30:33 +02:00
|
|
|
mutex_unlock(&rtc->ops_lock);
|
|
|
|
|
2007-05-08 09:33:30 +02:00
|
|
|
err = rtc_read_time(rtc, &tm);
|
2006-03-27 11:16:41 +02:00
|
|
|
if (err < 0)
|
|
|
|
return err;
|
|
|
|
|
|
|
|
if (copy_to_user(uarg, &tm, sizeof(tm)))
|
2008-07-24 06:30:33 +02:00
|
|
|
err = -EFAULT;
|
|
|
|
return err;
|
2006-03-27 11:16:41 +02:00
|
|
|
|
|
|
|
case RTC_SET_TIME:
|
2008-07-24 06:30:33 +02:00
|
|
|
mutex_unlock(&rtc->ops_lock);
|
|
|
|
|
2006-03-27 11:16:41 +02:00
|
|
|
if (copy_from_user(&tm, uarg, sizeof(tm)))
|
|
|
|
return -EFAULT;
|
|
|
|
|
2008-07-24 06:30:33 +02:00
|
|
|
return rtc_set_time(rtc, &tm);
|
2006-11-25 20:09:27 +01:00
|
|
|
|
2007-10-16 10:28:15 +02:00
|
|
|
case RTC_PIE_ON:
|
|
|
|
err = rtc_irq_set_state(rtc, NULL, 1);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case RTC_PIE_OFF:
|
|
|
|
err = rtc_irq_set_state(rtc, NULL, 0);
|
2006-11-25 20:09:27 +01:00
|
|
|
break;
|
|
|
|
|
2009-01-04 21:00:54 +01:00
|
|
|
case RTC_AIE_ON:
|
|
|
|
mutex_unlock(&rtc->ops_lock);
|
|
|
|
return rtc_alarm_irq_enable(rtc, 1);
|
|
|
|
|
|
|
|
case RTC_AIE_OFF:
|
|
|
|
mutex_unlock(&rtc->ops_lock);
|
|
|
|
return rtc_alarm_irq_enable(rtc, 0);
|
|
|
|
|
|
|
|
case RTC_UIE_ON:
|
|
|
|
mutex_unlock(&rtc->ops_lock);
|
|
|
|
return rtc_update_irq_enable(rtc, 1);
|
|
|
|
|
|
|
|
case RTC_UIE_OFF:
|
|
|
|
mutex_unlock(&rtc->ops_lock);
|
|
|
|
return rtc_update_irq_enable(rtc, 0);
|
|
|
|
|
2006-11-25 20:09:27 +01:00
|
|
|
case RTC_IRQP_SET:
|
2007-10-16 10:28:15 +02:00
|
|
|
err = rtc_irq_set_freq(rtc, NULL, arg);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case RTC_IRQP_READ:
|
|
|
|
err = put_user(rtc->irq_freq, (unsigned long __user *)uarg);
|
2006-11-25 20:09:27 +01:00
|
|
|
break;
|
|
|
|
|
2006-03-27 11:16:41 +02:00
|
|
|
case RTC_WKALM_SET:
|
2008-07-24 06:30:33 +02:00
|
|
|
mutex_unlock(&rtc->ops_lock);
|
2006-03-27 11:16:41 +02:00
|
|
|
if (copy_from_user(&alarm, uarg, sizeof(alarm)))
|
|
|
|
return -EFAULT;
|
|
|
|
|
2008-07-24 06:30:33 +02:00
|
|
|
return rtc_set_alarm(rtc, &alarm);
|
2006-03-27 11:16:41 +02:00
|
|
|
|
|
|
|
case RTC_WKALM_RD:
|
2008-07-24 06:30:33 +02:00
|
|
|
mutex_unlock(&rtc->ops_lock);
|
2007-05-08 09:33:30 +02:00
|
|
|
err = rtc_read_alarm(rtc, &alarm);
|
2006-03-27 11:16:41 +02:00
|
|
|
if (err < 0)
|
|
|
|
return err;
|
|
|
|
|
|
|
|
if (copy_to_user(uarg, &alarm, sizeof(alarm)))
|
2008-07-24 06:30:33 +02:00
|
|
|
err = -EFAULT;
|
|
|
|
return err;
|
2006-03-27 11:16:41 +02:00
|
|
|
|
|
|
|
default:
|
2011-02-03 01:55:19 +01:00
|
|
|
/* Finally try the driver's ioctl interface */
|
|
|
|
if (ops->ioctl) {
|
|
|
|
err = ops->ioctl(rtc->dev.parent, cmd, arg);
|
|
|
|
if (err == -ENOIOCTLCMD)
|
|
|
|
err = -ENOTTY;
|
2011-06-01 08:26:11 +02:00
|
|
|
} else
|
|
|
|
err = -ENOTTY;
|
2006-03-27 11:16:41 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2008-07-24 06:30:33 +02:00
|
|
|
done:
|
|
|
|
mutex_unlock(&rtc->ops_lock);
|
2006-03-27 11:16:41 +02:00
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2008-10-04 00:23:36 +02:00
|
|
|
static int rtc_dev_fasync(int fd, struct file *file, int on)
|
|
|
|
{
|
|
|
|
struct rtc_device *rtc = file->private_data;
|
|
|
|
return fasync_helper(fd, file, on, &rtc->async_queue);
|
|
|
|
}
|
|
|
|
|
2006-03-27 11:16:41 +02:00
|
|
|
static int rtc_dev_release(struct inode *inode, struct file *file)
|
|
|
|
{
|
2007-10-16 10:28:17 +02:00
|
|
|
struct rtc_device *rtc = file->private_data;
|
2006-03-27 11:16:41 +02:00
|
|
|
|
2008-10-16 07:03:04 +02:00
|
|
|
/* We shut down the repeating IRQs that userspace enabled,
|
|
|
|
* since nothing is listening to them.
|
|
|
|
* - Update (UIE) ... currently only managed through ioctls
|
|
|
|
* - Periodic (PIE) ... also used through rtc_*() interface calls
|
|
|
|
*
|
|
|
|
* Leave the alarm alone; it may be set to trigger a system wakeup
|
|
|
|
* later, or be used by kernel code, and is a one-shot event anyway.
|
|
|
|
*/
|
2009-01-04 21:00:54 +01:00
|
|
|
|
|
|
|
/* Keep ioctl until all drivers are converted */
|
2008-10-16 07:03:04 +02:00
|
|
|
rtc_dev_ioctl(file, RTC_UIE_OFF, 0);
|
2009-01-04 21:00:54 +01:00
|
|
|
rtc_update_irq_enable(rtc, 0);
|
2008-07-30 07:33:51 +02:00
|
|
|
rtc_irq_set_state(rtc, NULL, 0);
|
|
|
|
|
2006-03-27 11:16:41 +02:00
|
|
|
if (rtc->ops->release)
|
2007-05-08 09:33:40 +02:00
|
|
|
rtc->ops->release(rtc->dev.parent);
|
2006-03-27 11:16:41 +02:00
|
|
|
|
2007-12-05 08:45:05 +01:00
|
|
|
clear_bit_unlock(RTC_DEV_BUSY, &rtc->flags);
|
2006-03-27 11:16:41 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2007-02-12 09:55:34 +01:00
|
|
|
static const struct file_operations rtc_dev_fops = {
|
2006-03-27 11:16:41 +02:00
|
|
|
.owner = THIS_MODULE,
|
|
|
|
.llseek = no_llseek,
|
|
|
|
.read = rtc_dev_read,
|
|
|
|
.poll = rtc_dev_poll,
|
2008-07-24 06:30:33 +02:00
|
|
|
.unlocked_ioctl = rtc_dev_ioctl,
|
2006-03-27 11:16:41 +02:00
|
|
|
.open = rtc_dev_open,
|
|
|
|
.release = rtc_dev_release,
|
|
|
|
.fasync = rtc_dev_fasync,
|
|
|
|
};
|
|
|
|
|
|
|
|
/* insertion/removal hooks */
|
|
|
|
|
2007-05-08 09:33:46 +02:00
|
|
|
void rtc_dev_prepare(struct rtc_device *rtc)
|
2006-03-27 11:16:41 +02:00
|
|
|
{
|
2007-05-08 09:33:27 +02:00
|
|
|
if (!rtc_devt)
|
|
|
|
return;
|
2006-03-27 11:16:41 +02:00
|
|
|
|
|
|
|
if (rtc->id >= RTC_DEV_MAX) {
|
2013-02-22 01:45:23 +01:00
|
|
|
dev_dbg(&rtc->dev, "%s: too many RTC devices\n", rtc->name);
|
2007-05-08 09:33:27 +02:00
|
|
|
return;
|
2006-03-27 11:16:41 +02:00
|
|
|
}
|
|
|
|
|
2007-05-08 09:33:40 +02:00
|
|
|
rtc->dev.devt = MKDEV(MAJOR(rtc_devt), rtc->id);
|
2007-05-08 09:33:27 +02:00
|
|
|
|
2011-02-12 02:45:40 +01:00
|
|
|
#ifdef CONFIG_RTC_INTF_DEV_UIE_EMUL
|
|
|
|
INIT_WORK(&rtc->uie_task, rtc_uie_task);
|
|
|
|
setup_timer(&rtc->uie_timer, rtc_uie_timer, (unsigned long)rtc);
|
|
|
|
#endif
|
|
|
|
|
2006-03-27 11:16:41 +02:00
|
|
|
cdev_init(&rtc->char_dev, &rtc_dev_fops);
|
|
|
|
rtc->char_dev.owner = rtc->owner;
|
2007-05-08 09:33:46 +02:00
|
|
|
}
|
2006-03-27 11:16:41 +02:00
|
|
|
|
2007-05-08 09:33:46 +02:00
|
|
|
void rtc_dev_add_device(struct rtc_device *rtc)
|
|
|
|
{
|
2007-05-08 09:33:40 +02:00
|
|
|
if (cdev_add(&rtc->char_dev, rtc->dev.devt, 1))
|
2013-02-22 01:45:23 +01:00
|
|
|
dev_warn(&rtc->dev, "%s: failed to add char device %d:%d\n",
|
2007-05-08 09:33:27 +02:00
|
|
|
rtc->name, MAJOR(rtc_devt), rtc->id);
|
|
|
|
else
|
2013-02-22 01:45:23 +01:00
|
|
|
dev_dbg(&rtc->dev, "%s: dev (%d:%d)\n", rtc->name,
|
2006-03-27 11:16:41 +02:00
|
|
|
MAJOR(rtc_devt), rtc->id);
|
|
|
|
}
|
|
|
|
|
2007-05-08 09:33:27 +02:00
|
|
|
void rtc_dev_del_device(struct rtc_device *rtc)
|
2006-03-27 11:16:41 +02:00
|
|
|
{
|
2007-05-08 09:33:40 +02:00
|
|
|
if (rtc->dev.devt)
|
2006-03-27 11:16:41 +02:00
|
|
|
cdev_del(&rtc->char_dev);
|
|
|
|
}
|
|
|
|
|
2007-05-08 09:33:27 +02:00
|
|
|
void __init rtc_dev_init(void)
|
2006-03-27 11:16:41 +02:00
|
|
|
{
|
|
|
|
int err;
|
|
|
|
|
|
|
|
err = alloc_chrdev_region(&rtc_devt, 0, RTC_DEV_MAX, "rtc");
|
2007-05-08 09:33:27 +02:00
|
|
|
if (err < 0)
|
2013-02-22 01:45:23 +01:00
|
|
|
pr_err("failed to allocate char dev region\n");
|
2006-03-27 11:16:41 +02:00
|
|
|
}
|
|
|
|
|
2007-05-08 09:33:27 +02:00
|
|
|
void __exit rtc_dev_exit(void)
|
2006-03-27 11:16:41 +02:00
|
|
|
{
|
2007-05-08 09:33:27 +02:00
|
|
|
if (rtc_devt)
|
|
|
|
unregister_chrdev_region(rtc_devt, RTC_DEV_MAX);
|
2006-03-27 11:16:41 +02:00
|
|
|
}
|