| Alessandro Zummo | e824290 | 2006-03-27 01:16:41 -0800 | [diff] [blame] | 1 | /* | 
 | 2 |  * RTC subsystem, dev interface | 
 | 3 |  * | 
 | 4 |  * Copyright (C) 2005 Tower Technologies | 
 | 5 |  * Author: Alessandro Zummo <a.zummo@towertech.it> | 
 | 6 |  * | 
 | 7 |  * based on arch/arm/common/rtctime.c | 
 | 8 |  * | 
 | 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. | 
 | 12 | */ | 
 | 13 |  | 
 | 14 | #include <linux/module.h> | 
 | 15 | #include <linux/rtc.h> | 
| Alexey Dobriyan | d43c36d | 2009-10-07 17:09:06 +0400 | [diff] [blame] | 16 | #include <linux/sched.h> | 
| David Brownell | 5726fb2 | 2007-05-08 00:33:27 -0700 | [diff] [blame] | 17 | #include "rtc-core.h" | 
| Alessandro Zummo | e824290 | 2006-03-27 01:16:41 -0800 | [diff] [blame] | 18 |  | 
| Alessandro Zummo | e824290 | 2006-03-27 01:16:41 -0800 | [diff] [blame] | 19 | static dev_t rtc_devt; | 
 | 20 |  | 
 | 21 | #define RTC_DEV_MAX 16 /* 16 RTCs should be enough for everyone... */ | 
 | 22 |  | 
 | 23 | static int rtc_dev_open(struct inode *inode, struct file *file) | 
 | 24 | { | 
 | 25 | 	int err; | 
 | 26 | 	struct rtc_device *rtc = container_of(inode->i_cdev, | 
 | 27 | 					struct rtc_device, char_dev); | 
| David Brownell | ff8371a | 2006-09-30 23:28:17 -0700 | [diff] [blame] | 28 | 	const struct rtc_class_ops *ops = rtc->ops; | 
| Alessandro Zummo | e824290 | 2006-03-27 01:16:41 -0800 | [diff] [blame] | 29 |  | 
| David Brownell | b1c3c89 | 2008-08-12 15:08:41 -0700 | [diff] [blame] | 30 | 	if (test_and_set_bit_lock(RTC_DEV_BUSY, &rtc->flags)) | 
 | 31 | 		return -EBUSY; | 
| Alessandro Zummo | e824290 | 2006-03-27 01:16:41 -0800 | [diff] [blame] | 32 |  | 
| David Brownell | ab6a2d7 | 2007-05-08 00:33:30 -0700 | [diff] [blame] | 33 | 	file->private_data = rtc; | 
| Alessandro Zummo | e824290 | 2006-03-27 01:16:41 -0800 | [diff] [blame] | 34 |  | 
| David Brownell | cd96620 | 2007-05-08 00:33:40 -0700 | [diff] [blame] | 35 | 	err = ops->open ? ops->open(rtc->dev.parent) : 0; | 
| Alessandro Zummo | e824290 | 2006-03-27 01:16:41 -0800 | [diff] [blame] | 36 | 	if (err == 0) { | 
 | 37 | 		spin_lock_irq(&rtc->irq_lock); | 
 | 38 | 		rtc->irq_data = 0; | 
 | 39 | 		spin_unlock_irq(&rtc->irq_lock); | 
 | 40 |  | 
| David Brownell | b1c3c89 | 2008-08-12 15:08:41 -0700 | [diff] [blame] | 41 | 		return 0; | 
| Alessandro Zummo | e824290 | 2006-03-27 01:16:41 -0800 | [diff] [blame] | 42 | 	} | 
 | 43 |  | 
| Jiri Kosina | 8853c20 | 2007-11-28 16:22:03 -0800 | [diff] [blame] | 44 | 	/* something has gone wrong */ | 
| Jiri Kosina | 372a302 | 2007-12-04 23:45:05 -0800 | [diff] [blame] | 45 | 	clear_bit_unlock(RTC_DEV_BUSY, &rtc->flags); | 
| Alessandro Zummo | e824290 | 2006-03-27 01:16:41 -0800 | [diff] [blame] | 46 | 	return err; | 
 | 47 | } | 
 | 48 |  | 
| Atsushi Nemoto | 655066c | 2006-06-25 05:48:17 -0700 | [diff] [blame] | 49 | #ifdef CONFIG_RTC_INTF_DEV_UIE_EMUL | 
 | 50 | /* | 
 | 51 |  * Routine to poll RTC seconds field for change as often as possible, | 
 | 52 |  * after first RTC_UIE use timer to reduce polling | 
 | 53 |  */ | 
| David Howells | c402895 | 2006-11-22 14:57:56 +0000 | [diff] [blame] | 54 | static void rtc_uie_task(struct work_struct *work) | 
| Atsushi Nemoto | 655066c | 2006-06-25 05:48:17 -0700 | [diff] [blame] | 55 | { | 
| David Howells | c402895 | 2006-11-22 14:57:56 +0000 | [diff] [blame] | 56 | 	struct rtc_device *rtc = | 
 | 57 | 		container_of(work, struct rtc_device, uie_task); | 
| Atsushi Nemoto | 655066c | 2006-06-25 05:48:17 -0700 | [diff] [blame] | 58 | 	struct rtc_time tm; | 
 | 59 | 	int num = 0; | 
 | 60 | 	int err; | 
 | 61 |  | 
| David Brownell | ab6a2d7 | 2007-05-08 00:33:30 -0700 | [diff] [blame] | 62 | 	err = rtc_read_time(rtc, &tm); | 
| David Brownell | d728b1e | 2006-11-25 11:09:28 -0800 | [diff] [blame] | 63 |  | 
| Atsushi Nemoto | e6229be | 2009-06-18 16:49:09 -0700 | [diff] [blame] | 64 | 	spin_lock_irq(&rtc->irq_lock); | 
| Atsushi Nemoto | 655066c | 2006-06-25 05:48:17 -0700 | [diff] [blame] | 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; | 
 | 76 | 	} | 
| Atsushi Nemoto | e6229be | 2009-06-18 16:49:09 -0700 | [diff] [blame] | 77 | 	spin_unlock_irq(&rtc->irq_lock); | 
| Atsushi Nemoto | 655066c | 2006-06-25 05:48:17 -0700 | [diff] [blame] | 78 | 	if (num) | 
| David Brownell | ab6a2d7 | 2007-05-08 00:33:30 -0700 | [diff] [blame] | 79 | 		rtc_update_irq(rtc, num, RTC_UF | RTC_IRQF); | 
| Atsushi Nemoto | 655066c | 2006-06-25 05:48:17 -0700 | [diff] [blame] | 80 | } | 
| Atsushi Nemoto | 655066c | 2006-06-25 05:48:17 -0700 | [diff] [blame] | 81 | static void rtc_uie_timer(unsigned long data) | 
 | 82 | { | 
 | 83 | 	struct rtc_device *rtc = (struct rtc_device *)data; | 
 | 84 | 	unsigned long flags; | 
 | 85 |  | 
 | 86 | 	spin_lock_irqsave(&rtc->irq_lock, flags); | 
 | 87 | 	rtc->uie_timer_active = 0; | 
 | 88 | 	rtc->uie_task_active = 1; | 
 | 89 | 	if ((schedule_work(&rtc->uie_task) == 0)) | 
 | 90 | 		rtc->uie_task_active = 0; | 
 | 91 | 	spin_unlock_irqrestore(&rtc->irq_lock, flags); | 
 | 92 | } | 
 | 93 |  | 
| Alessandro Zummo | 099e657 | 2009-01-04 12:00:54 -0800 | [diff] [blame] | 94 | static int clear_uie(struct rtc_device *rtc) | 
| Atsushi Nemoto | 655066c | 2006-06-25 05:48:17 -0700 | [diff] [blame] | 95 | { | 
 | 96 | 	spin_lock_irq(&rtc->irq_lock); | 
| Alessandro Zummo | 099e657 | 2009-01-04 12:00:54 -0800 | [diff] [blame] | 97 | 	if (rtc->uie_irq_active) { | 
| Atsushi Nemoto | 655066c | 2006-06-25 05:48:17 -0700 | [diff] [blame] | 98 | 		rtc->stop_uie_polling = 1; | 
 | 99 | 		if (rtc->uie_timer_active) { | 
 | 100 | 			spin_unlock_irq(&rtc->irq_lock); | 
 | 101 | 			del_timer_sync(&rtc->uie_timer); | 
 | 102 | 			spin_lock_irq(&rtc->irq_lock); | 
 | 103 | 			rtc->uie_timer_active = 0; | 
 | 104 | 		} | 
 | 105 | 		if (rtc->uie_task_active) { | 
 | 106 | 			spin_unlock_irq(&rtc->irq_lock); | 
 | 107 | 			flush_scheduled_work(); | 
 | 108 | 			spin_lock_irq(&rtc->irq_lock); | 
 | 109 | 		} | 
| Alessandro Zummo | 099e657 | 2009-01-04 12:00:54 -0800 | [diff] [blame] | 110 | 		rtc->uie_irq_active = 0; | 
| Atsushi Nemoto | 655066c | 2006-06-25 05:48:17 -0700 | [diff] [blame] | 111 | 	} | 
 | 112 | 	spin_unlock_irq(&rtc->irq_lock); | 
| Alessandro Zummo | 099e657 | 2009-01-04 12:00:54 -0800 | [diff] [blame] | 113 | 	return 0; | 
| Atsushi Nemoto | 655066c | 2006-06-25 05:48:17 -0700 | [diff] [blame] | 114 | } | 
 | 115 |  | 
 | 116 | static int set_uie(struct rtc_device *rtc) | 
 | 117 | { | 
 | 118 | 	struct rtc_time tm; | 
 | 119 | 	int err; | 
 | 120 |  | 
| David Brownell | ab6a2d7 | 2007-05-08 00:33:30 -0700 | [diff] [blame] | 121 | 	err = rtc_read_time(rtc, &tm); | 
| Atsushi Nemoto | 655066c | 2006-06-25 05:48:17 -0700 | [diff] [blame] | 122 | 	if (err) | 
 | 123 | 		return err; | 
 | 124 | 	spin_lock_irq(&rtc->irq_lock); | 
| Alessandro Zummo | 099e657 | 2009-01-04 12:00:54 -0800 | [diff] [blame] | 125 | 	if (!rtc->uie_irq_active) { | 
 | 126 | 		rtc->uie_irq_active = 1; | 
| Atsushi Nemoto | 655066c | 2006-06-25 05:48:17 -0700 | [diff] [blame] | 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; | 
 | 132 | 	} | 
 | 133 | 	rtc->irq_data = 0; | 
 | 134 | 	spin_unlock_irq(&rtc->irq_lock); | 
 | 135 | 	return 0; | 
 | 136 | } | 
| Alessandro Zummo | 099e657 | 2009-01-04 12:00:54 -0800 | [diff] [blame] | 137 |  | 
 | 138 | int rtc_dev_update_irq_enable_emul(struct rtc_device *rtc, unsigned int enabled) | 
 | 139 | { | 
 | 140 | 	if (enabled) | 
 | 141 | 		return set_uie(rtc); | 
 | 142 | 	else | 
 | 143 | 		return clear_uie(rtc); | 
 | 144 | } | 
 | 145 | EXPORT_SYMBOL(rtc_dev_update_irq_enable_emul); | 
 | 146 |  | 
| Atsushi Nemoto | 655066c | 2006-06-25 05:48:17 -0700 | [diff] [blame] | 147 | #endif /* CONFIG_RTC_INTF_DEV_UIE_EMUL */ | 
| Alessandro Zummo | e824290 | 2006-03-27 01:16:41 -0800 | [diff] [blame] | 148 |  | 
 | 149 | static ssize_t | 
 | 150 | rtc_dev_read(struct file *file, char __user *buf, size_t count, loff_t *ppos) | 
 | 151 | { | 
| Mark Zhan | 88efe13 | 2007-10-16 01:28:17 -0700 | [diff] [blame] | 152 | 	struct rtc_device *rtc = file->private_data; | 
| Alessandro Zummo | e824290 | 2006-03-27 01:16:41 -0800 | [diff] [blame] | 153 |  | 
 | 154 | 	DECLARE_WAITQUEUE(wait, current); | 
 | 155 | 	unsigned long data; | 
 | 156 | 	ssize_t ret; | 
 | 157 |  | 
| Atsushi Nemoto | 3418ff7 | 2006-05-01 12:16:16 -0700 | [diff] [blame] | 158 | 	if (count != sizeof(unsigned int) && count < sizeof(unsigned long)) | 
| Alessandro Zummo | e824290 | 2006-03-27 01:16:41 -0800 | [diff] [blame] | 159 | 		return -EINVAL; | 
 | 160 |  | 
 | 161 | 	add_wait_queue(&rtc->irq_queue, &wait); | 
 | 162 | 	do { | 
 | 163 | 		__set_current_state(TASK_INTERRUPTIBLE); | 
 | 164 |  | 
 | 165 | 		spin_lock_irq(&rtc->irq_lock); | 
 | 166 | 		data = rtc->irq_data; | 
 | 167 | 		rtc->irq_data = 0; | 
 | 168 | 		spin_unlock_irq(&rtc->irq_lock); | 
 | 169 |  | 
 | 170 | 		if (data != 0) { | 
 | 171 | 			ret = 0; | 
 | 172 | 			break; | 
 | 173 | 		} | 
 | 174 | 		if (file->f_flags & O_NONBLOCK) { | 
 | 175 | 			ret = -EAGAIN; | 
 | 176 | 			break; | 
 | 177 | 		} | 
 | 178 | 		if (signal_pending(current)) { | 
 | 179 | 			ret = -ERESTARTSYS; | 
 | 180 | 			break; | 
 | 181 | 		} | 
 | 182 | 		schedule(); | 
 | 183 | 	} while (1); | 
 | 184 | 	set_current_state(TASK_RUNNING); | 
 | 185 | 	remove_wait_queue(&rtc->irq_queue, &wait); | 
 | 186 |  | 
 | 187 | 	if (ret == 0) { | 
 | 188 | 		/* Check for any data updates */ | 
 | 189 | 		if (rtc->ops->read_callback) | 
| David Brownell | cd96620 | 2007-05-08 00:33:40 -0700 | [diff] [blame] | 190 | 			data = rtc->ops->read_callback(rtc->dev.parent, | 
| Atsushi Nemoto | 3418ff7 | 2006-05-01 12:16:16 -0700 | [diff] [blame] | 191 | 						       data); | 
| Alessandro Zummo | e824290 | 2006-03-27 01:16:41 -0800 | [diff] [blame] | 192 |  | 
| Atsushi Nemoto | 3418ff7 | 2006-05-01 12:16:16 -0700 | [diff] [blame] | 193 | 		if (sizeof(int) != sizeof(long) && | 
 | 194 | 		    count == sizeof(unsigned int)) | 
 | 195 | 			ret = put_user(data, (unsigned int __user *)buf) ?: | 
 | 196 | 				sizeof(unsigned int); | 
 | 197 | 		else | 
 | 198 | 			ret = put_user(data, (unsigned long __user *)buf) ?: | 
 | 199 | 				sizeof(unsigned long); | 
| Alessandro Zummo | e824290 | 2006-03-27 01:16:41 -0800 | [diff] [blame] | 200 | 	} | 
 | 201 | 	return ret; | 
 | 202 | } | 
 | 203 |  | 
 | 204 | static unsigned int rtc_dev_poll(struct file *file, poll_table *wait) | 
 | 205 | { | 
| Mark Zhan | 88efe13 | 2007-10-16 01:28:17 -0700 | [diff] [blame] | 206 | 	struct rtc_device *rtc = file->private_data; | 
| Alessandro Zummo | e824290 | 2006-03-27 01:16:41 -0800 | [diff] [blame] | 207 | 	unsigned long data; | 
 | 208 |  | 
 | 209 | 	poll_wait(file, &rtc->irq_queue, wait); | 
 | 210 |  | 
 | 211 | 	data = rtc->irq_data; | 
 | 212 |  | 
 | 213 | 	return (data != 0) ? (POLLIN | POLLRDNORM) : 0; | 
 | 214 | } | 
 | 215 |  | 
| David Brownell | 5ad31a5 | 2008-07-23 21:30:33 -0700 | [diff] [blame] | 216 | static long rtc_dev_ioctl(struct file *file, | 
| Alessandro Zummo | e824290 | 2006-03-27 01:16:41 -0800 | [diff] [blame] | 217 | 		unsigned int cmd, unsigned long arg) | 
 | 218 | { | 
 | 219 | 	int err = 0; | 
| David Brownell | ab6a2d7 | 2007-05-08 00:33:30 -0700 | [diff] [blame] | 220 | 	struct rtc_device *rtc = file->private_data; | 
| David Brownell | ff8371a | 2006-09-30 23:28:17 -0700 | [diff] [blame] | 221 | 	const struct rtc_class_ops *ops = rtc->ops; | 
| Alessandro Zummo | e824290 | 2006-03-27 01:16:41 -0800 | [diff] [blame] | 222 | 	struct rtc_time tm; | 
 | 223 | 	struct rtc_wkalrm alarm; | 
 | 224 | 	void __user *uarg = (void __user *) arg; | 
 | 225 |  | 
| David Brownell | 5ad31a5 | 2008-07-23 21:30:33 -0700 | [diff] [blame] | 226 | 	err = mutex_lock_interruptible(&rtc->ops_lock); | 
 | 227 | 	if (err) | 
| David Brownell | b68bb26 | 2008-07-29 22:33:30 -0700 | [diff] [blame] | 228 | 		return err; | 
| David Brownell | 5ad31a5 | 2008-07-23 21:30:33 -0700 | [diff] [blame] | 229 |  | 
| David Brownell | 2601a46 | 2006-11-25 11:09:27 -0800 | [diff] [blame] | 230 | 	/* check that the calling task has appropriate permissions | 
| Alessandro Zummo | 110d693 | 2006-06-25 05:48:20 -0700 | [diff] [blame] | 231 | 	 * for certain ioctls. doing this check here is useful | 
 | 232 | 	 * to avoid duplicate code in each driver. | 
 | 233 | 	 */ | 
 | 234 | 	switch (cmd) { | 
 | 235 | 	case RTC_EPOCH_SET: | 
 | 236 | 	case RTC_SET_TIME: | 
 | 237 | 		if (!capable(CAP_SYS_TIME)) | 
| David Brownell | 5ad31a5 | 2008-07-23 21:30:33 -0700 | [diff] [blame] | 238 | 			err = -EACCES; | 
| Alessandro Zummo | 110d693 | 2006-06-25 05:48:20 -0700 | [diff] [blame] | 239 | 		break; | 
 | 240 |  | 
 | 241 | 	case RTC_IRQP_SET: | 
 | 242 | 		if (arg > rtc->max_user_freq && !capable(CAP_SYS_RESOURCE)) | 
| David Brownell | 5ad31a5 | 2008-07-23 21:30:33 -0700 | [diff] [blame] | 243 | 			err = -EACCES; | 
| Alessandro Zummo | 110d693 | 2006-06-25 05:48:20 -0700 | [diff] [blame] | 244 | 		break; | 
 | 245 |  | 
 | 246 | 	case RTC_PIE_ON: | 
| Bryan Kadzban | 9d013d3 | 2007-10-16 01:28:23 -0700 | [diff] [blame] | 247 | 		if (rtc->irq_freq > rtc->max_user_freq && | 
 | 248 | 				!capable(CAP_SYS_RESOURCE)) | 
| David Brownell | 5ad31a5 | 2008-07-23 21:30:33 -0700 | [diff] [blame] | 249 | 			err = -EACCES; | 
| Alessandro Zummo | 110d693 | 2006-06-25 05:48:20 -0700 | [diff] [blame] | 250 | 		break; | 
 | 251 | 	} | 
 | 252 |  | 
| David Brownell | 5ad31a5 | 2008-07-23 21:30:33 -0700 | [diff] [blame] | 253 | 	if (err) | 
 | 254 | 		goto done; | 
 | 255 |  | 
| Alessandro Zummo | e824290 | 2006-03-27 01:16:41 -0800 | [diff] [blame] | 256 | 	/* try the driver's ioctl interface */ | 
 | 257 | 	if (ops->ioctl) { | 
| David Brownell | cd96620 | 2007-05-08 00:33:40 -0700 | [diff] [blame] | 258 | 		err = ops->ioctl(rtc->dev.parent, cmd, arg); | 
| David Brownell | 5ad31a5 | 2008-07-23 21:30:33 -0700 | [diff] [blame] | 259 | 		if (err != -ENOIOCTLCMD) { | 
 | 260 | 			mutex_unlock(&rtc->ops_lock); | 
| Alessandro Zummo | e824290 | 2006-03-27 01:16:41 -0800 | [diff] [blame] | 261 | 			return err; | 
| David Brownell | 5ad31a5 | 2008-07-23 21:30:33 -0700 | [diff] [blame] | 262 | 		} | 
| Alessandro Zummo | e824290 | 2006-03-27 01:16:41 -0800 | [diff] [blame] | 263 | 	} | 
 | 264 |  | 
 | 265 | 	/* if the driver does not provide the ioctl interface | 
 | 266 | 	 * or if that particular ioctl was not implemented | 
| Alessandro Zummo | b3969e5 | 2006-05-20 15:00:29 -0700 | [diff] [blame] | 267 | 	 * (-ENOIOCTLCMD), we will try to emulate here. | 
| David Brownell | 8a0bdfd | 2008-02-06 01:38:45 -0800 | [diff] [blame] | 268 | 	 * | 
 | 269 | 	 * Drivers *SHOULD NOT* provide ioctl implementations | 
 | 270 | 	 * for these requests.  Instead, provide methods to | 
 | 271 | 	 * support the following code, so that the RTC's main | 
 | 272 | 	 * features are accessible without using ioctls. | 
 | 273 | 	 * | 
 | 274 | 	 * RTC and alarm times will be in UTC, by preference, | 
 | 275 | 	 * but dual-booting with MS-Windows implies RTCs must | 
 | 276 | 	 * use the local wall clock time. | 
| Alessandro Zummo | e824290 | 2006-03-27 01:16:41 -0800 | [diff] [blame] | 277 | 	 */ | 
 | 278 |  | 
 | 279 | 	switch (cmd) { | 
 | 280 | 	case RTC_ALM_READ: | 
| David Brownell | 5ad31a5 | 2008-07-23 21:30:33 -0700 | [diff] [blame] | 281 | 		mutex_unlock(&rtc->ops_lock); | 
 | 282 |  | 
| David Brownell | ab6a2d7 | 2007-05-08 00:33:30 -0700 | [diff] [blame] | 283 | 		err = rtc_read_alarm(rtc, &alarm); | 
| Alessandro Zummo | e824290 | 2006-03-27 01:16:41 -0800 | [diff] [blame] | 284 | 		if (err < 0) | 
 | 285 | 			return err; | 
 | 286 |  | 
 | 287 | 		if (copy_to_user(uarg, &alarm.time, sizeof(tm))) | 
| David Brownell | 5ad31a5 | 2008-07-23 21:30:33 -0700 | [diff] [blame] | 288 | 			err = -EFAULT; | 
 | 289 | 		return err; | 
| Alessandro Zummo | e824290 | 2006-03-27 01:16:41 -0800 | [diff] [blame] | 290 |  | 
 | 291 | 	case RTC_ALM_SET: | 
| David Brownell | 5ad31a5 | 2008-07-23 21:30:33 -0700 | [diff] [blame] | 292 | 		mutex_unlock(&rtc->ops_lock); | 
 | 293 |  | 
| Alessandro Zummo | e824290 | 2006-03-27 01:16:41 -0800 | [diff] [blame] | 294 | 		if (copy_from_user(&alarm.time, uarg, sizeof(tm))) | 
 | 295 | 			return -EFAULT; | 
 | 296 |  | 
 | 297 | 		alarm.enabled = 0; | 
 | 298 | 		alarm.pending = 0; | 
| Alessandro Zummo | e824290 | 2006-03-27 01:16:41 -0800 | [diff] [blame] | 299 | 		alarm.time.tm_wday = -1; | 
 | 300 | 		alarm.time.tm_yday = -1; | 
 | 301 | 		alarm.time.tm_isdst = -1; | 
| David Brownell | f8245c2 | 2007-05-08 00:34:07 -0700 | [diff] [blame] | 302 |  | 
 | 303 | 		/* RTC_ALM_SET alarms may be up to 24 hours in the future. | 
 | 304 | 		 * Rather than expecting every RTC to implement "don't care" | 
 | 305 | 		 * for day/month/year fields, just force the alarm to have | 
 | 306 | 		 * the right values for those fields. | 
 | 307 | 		 * | 
 | 308 | 		 * RTC_WKALM_SET should be used instead.  Not only does it | 
 | 309 | 		 * eliminate the need for a separate RTC_AIE_ON call, it | 
 | 310 | 		 * doesn't have the "alarm 23:59:59 in the future" race. | 
 | 311 | 		 * | 
 | 312 | 		 * NOTE:  some legacy code may have used invalid fields as | 
 | 313 | 		 * wildcards, exposing hardware "periodic alarm" capabilities. | 
 | 314 | 		 * Not supported here. | 
 | 315 | 		 */ | 
 | 316 | 		{ | 
 | 317 | 			unsigned long now, then; | 
 | 318 |  | 
 | 319 | 			err = rtc_read_time(rtc, &tm); | 
 | 320 | 			if (err < 0) | 
 | 321 | 				return err; | 
 | 322 | 			rtc_tm_to_time(&tm, &now); | 
 | 323 |  | 
 | 324 | 			alarm.time.tm_mday = tm.tm_mday; | 
 | 325 | 			alarm.time.tm_mon = tm.tm_mon; | 
 | 326 | 			alarm.time.tm_year = tm.tm_year; | 
 | 327 | 			err  = rtc_valid_tm(&alarm.time); | 
 | 328 | 			if (err < 0) | 
 | 329 | 				return err; | 
 | 330 | 			rtc_tm_to_time(&alarm.time, &then); | 
 | 331 |  | 
 | 332 | 			/* alarm may need to wrap into tomorrow */ | 
 | 333 | 			if (then < now) { | 
 | 334 | 				rtc_time_to_tm(now + 24 * 60 * 60, &tm); | 
 | 335 | 				alarm.time.tm_mday = tm.tm_mday; | 
 | 336 | 				alarm.time.tm_mon = tm.tm_mon; | 
 | 337 | 				alarm.time.tm_year = tm.tm_year; | 
 | 338 | 			} | 
 | 339 | 		} | 
 | 340 |  | 
| David Brownell | 5ad31a5 | 2008-07-23 21:30:33 -0700 | [diff] [blame] | 341 | 		return rtc_set_alarm(rtc, &alarm); | 
| Alessandro Zummo | e824290 | 2006-03-27 01:16:41 -0800 | [diff] [blame] | 342 |  | 
 | 343 | 	case RTC_RD_TIME: | 
| David Brownell | 5ad31a5 | 2008-07-23 21:30:33 -0700 | [diff] [blame] | 344 | 		mutex_unlock(&rtc->ops_lock); | 
 | 345 |  | 
| David Brownell | ab6a2d7 | 2007-05-08 00:33:30 -0700 | [diff] [blame] | 346 | 		err = rtc_read_time(rtc, &tm); | 
| Alessandro Zummo | e824290 | 2006-03-27 01:16:41 -0800 | [diff] [blame] | 347 | 		if (err < 0) | 
 | 348 | 			return err; | 
 | 349 |  | 
 | 350 | 		if (copy_to_user(uarg, &tm, sizeof(tm))) | 
| David Brownell | 5ad31a5 | 2008-07-23 21:30:33 -0700 | [diff] [blame] | 351 | 			err = -EFAULT; | 
 | 352 | 		return err; | 
| Alessandro Zummo | e824290 | 2006-03-27 01:16:41 -0800 | [diff] [blame] | 353 |  | 
 | 354 | 	case RTC_SET_TIME: | 
| David Brownell | 5ad31a5 | 2008-07-23 21:30:33 -0700 | [diff] [blame] | 355 | 		mutex_unlock(&rtc->ops_lock); | 
 | 356 |  | 
| Alessandro Zummo | e824290 | 2006-03-27 01:16:41 -0800 | [diff] [blame] | 357 | 		if (copy_from_user(&tm, uarg, sizeof(tm))) | 
 | 358 | 			return -EFAULT; | 
 | 359 |  | 
| David Brownell | 5ad31a5 | 2008-07-23 21:30:33 -0700 | [diff] [blame] | 360 | 		return rtc_set_time(rtc, &tm); | 
| David Brownell | 2601a46 | 2006-11-25 11:09:27 -0800 | [diff] [blame] | 361 |  | 
| Alessandro Zummo | d691eb9 | 2007-10-16 01:28:15 -0700 | [diff] [blame] | 362 | 	case RTC_PIE_ON: | 
 | 363 | 		err = rtc_irq_set_state(rtc, NULL, 1); | 
 | 364 | 		break; | 
 | 365 |  | 
 | 366 | 	case RTC_PIE_OFF: | 
 | 367 | 		err = rtc_irq_set_state(rtc, NULL, 0); | 
| David Brownell | 2601a46 | 2006-11-25 11:09:27 -0800 | [diff] [blame] | 368 | 		break; | 
 | 369 |  | 
| Alessandro Zummo | 099e657 | 2009-01-04 12:00:54 -0800 | [diff] [blame] | 370 | 	case RTC_AIE_ON: | 
 | 371 | 		mutex_unlock(&rtc->ops_lock); | 
 | 372 | 		return rtc_alarm_irq_enable(rtc, 1); | 
 | 373 |  | 
 | 374 | 	case RTC_AIE_OFF: | 
 | 375 | 		mutex_unlock(&rtc->ops_lock); | 
 | 376 | 		return rtc_alarm_irq_enable(rtc, 0); | 
 | 377 |  | 
 | 378 | 	case RTC_UIE_ON: | 
 | 379 | 		mutex_unlock(&rtc->ops_lock); | 
 | 380 | 		return rtc_update_irq_enable(rtc, 1); | 
 | 381 |  | 
 | 382 | 	case RTC_UIE_OFF: | 
 | 383 | 		mutex_unlock(&rtc->ops_lock); | 
 | 384 | 		return rtc_update_irq_enable(rtc, 0); | 
 | 385 |  | 
| David Brownell | 2601a46 | 2006-11-25 11:09:27 -0800 | [diff] [blame] | 386 | 	case RTC_IRQP_SET: | 
| Alessandro Zummo | d691eb9 | 2007-10-16 01:28:15 -0700 | [diff] [blame] | 387 | 		err = rtc_irq_set_freq(rtc, NULL, arg); | 
 | 388 | 		break; | 
 | 389 |  | 
 | 390 | 	case RTC_IRQP_READ: | 
 | 391 | 		err = put_user(rtc->irq_freq, (unsigned long __user *)uarg); | 
| David Brownell | 2601a46 | 2006-11-25 11:09:27 -0800 | [diff] [blame] | 392 | 		break; | 
 | 393 |  | 
| Alessandro Zummo | e824290 | 2006-03-27 01:16:41 -0800 | [diff] [blame] | 394 | #if 0 | 
 | 395 | 	case RTC_EPOCH_SET: | 
 | 396 | #ifndef rtc_epoch | 
 | 397 | 		/* | 
 | 398 | 		 * There were no RTC clocks before 1900. | 
 | 399 | 		 */ | 
 | 400 | 		if (arg < 1900) { | 
 | 401 | 			err = -EINVAL; | 
 | 402 | 			break; | 
 | 403 | 		} | 
| Alessandro Zummo | e824290 | 2006-03-27 01:16:41 -0800 | [diff] [blame] | 404 | 		rtc_epoch = arg; | 
 | 405 | 		err = 0; | 
 | 406 | #endif | 
 | 407 | 		break; | 
 | 408 |  | 
 | 409 | 	case RTC_EPOCH_READ: | 
 | 410 | 		err = put_user(rtc_epoch, (unsigned long __user *)uarg); | 
 | 411 | 		break; | 
 | 412 | #endif | 
 | 413 | 	case RTC_WKALM_SET: | 
| David Brownell | 5ad31a5 | 2008-07-23 21:30:33 -0700 | [diff] [blame] | 414 | 		mutex_unlock(&rtc->ops_lock); | 
| Alessandro Zummo | e824290 | 2006-03-27 01:16:41 -0800 | [diff] [blame] | 415 | 		if (copy_from_user(&alarm, uarg, sizeof(alarm))) | 
 | 416 | 			return -EFAULT; | 
 | 417 |  | 
| David Brownell | 5ad31a5 | 2008-07-23 21:30:33 -0700 | [diff] [blame] | 418 | 		return rtc_set_alarm(rtc, &alarm); | 
| Alessandro Zummo | e824290 | 2006-03-27 01:16:41 -0800 | [diff] [blame] | 419 |  | 
 | 420 | 	case RTC_WKALM_RD: | 
| David Brownell | 5ad31a5 | 2008-07-23 21:30:33 -0700 | [diff] [blame] | 421 | 		mutex_unlock(&rtc->ops_lock); | 
| David Brownell | ab6a2d7 | 2007-05-08 00:33:30 -0700 | [diff] [blame] | 422 | 		err = rtc_read_alarm(rtc, &alarm); | 
| Alessandro Zummo | e824290 | 2006-03-27 01:16:41 -0800 | [diff] [blame] | 423 | 		if (err < 0) | 
 | 424 | 			return err; | 
 | 425 |  | 
 | 426 | 		if (copy_to_user(uarg, &alarm, sizeof(alarm))) | 
| David Brownell | 5ad31a5 | 2008-07-23 21:30:33 -0700 | [diff] [blame] | 427 | 			err = -EFAULT; | 
 | 428 | 		return err; | 
| Alessandro Zummo | e824290 | 2006-03-27 01:16:41 -0800 | [diff] [blame] | 429 |  | 
 | 430 | 	default: | 
| Alessandro Zummo | b3969e5 | 2006-05-20 15:00:29 -0700 | [diff] [blame] | 431 | 		err = -ENOTTY; | 
| Alessandro Zummo | e824290 | 2006-03-27 01:16:41 -0800 | [diff] [blame] | 432 | 		break; | 
 | 433 | 	} | 
 | 434 |  | 
| David Brownell | 5ad31a5 | 2008-07-23 21:30:33 -0700 | [diff] [blame] | 435 | done: | 
 | 436 | 	mutex_unlock(&rtc->ops_lock); | 
| Alessandro Zummo | e824290 | 2006-03-27 01:16:41 -0800 | [diff] [blame] | 437 | 	return err; | 
 | 438 | } | 
 | 439 |  | 
| Marcin Slusarz | 2e4a75c | 2008-10-03 15:23:36 -0700 | [diff] [blame] | 440 | static int rtc_dev_fasync(int fd, struct file *file, int on) | 
 | 441 | { | 
 | 442 | 	struct rtc_device *rtc = file->private_data; | 
 | 443 | 	return fasync_helper(fd, file, on, &rtc->async_queue); | 
 | 444 | } | 
 | 445 |  | 
| Alessandro Zummo | e824290 | 2006-03-27 01:16:41 -0800 | [diff] [blame] | 446 | static int rtc_dev_release(struct inode *inode, struct file *file) | 
 | 447 | { | 
| Mark Zhan | 88efe13 | 2007-10-16 01:28:17 -0700 | [diff] [blame] | 448 | 	struct rtc_device *rtc = file->private_data; | 
| Alessandro Zummo | e824290 | 2006-03-27 01:16:41 -0800 | [diff] [blame] | 449 |  | 
| David Brownell | 743e6a5 | 2008-10-15 22:03:04 -0700 | [diff] [blame] | 450 | 	/* We shut down the repeating IRQs that userspace enabled, | 
 | 451 | 	 * since nothing is listening to them. | 
 | 452 | 	 *  - Update (UIE) ... currently only managed through ioctls | 
 | 453 | 	 *  - Periodic (PIE) ... also used through rtc_*() interface calls | 
 | 454 | 	 * | 
 | 455 | 	 * Leave the alarm alone; it may be set to trigger a system wakeup | 
 | 456 | 	 * later, or be used by kernel code, and is a one-shot event anyway. | 
 | 457 | 	 */ | 
| Alessandro Zummo | 099e657 | 2009-01-04 12:00:54 -0800 | [diff] [blame] | 458 |  | 
 | 459 | 	/* Keep ioctl until all drivers are converted */ | 
| David Brownell | 743e6a5 | 2008-10-15 22:03:04 -0700 | [diff] [blame] | 460 | 	rtc_dev_ioctl(file, RTC_UIE_OFF, 0); | 
| Alessandro Zummo | 099e657 | 2009-01-04 12:00:54 -0800 | [diff] [blame] | 461 | 	rtc_update_irq_enable(rtc, 0); | 
| Tomas Janousek | 5cdc98b | 2008-07-29 22:33:51 -0700 | [diff] [blame] | 462 | 	rtc_irq_set_state(rtc, NULL, 0); | 
 | 463 |  | 
| Alessandro Zummo | e824290 | 2006-03-27 01:16:41 -0800 | [diff] [blame] | 464 | 	if (rtc->ops->release) | 
| David Brownell | cd96620 | 2007-05-08 00:33:40 -0700 | [diff] [blame] | 465 | 		rtc->ops->release(rtc->dev.parent); | 
| Alessandro Zummo | e824290 | 2006-03-27 01:16:41 -0800 | [diff] [blame] | 466 |  | 
| Jiri Kosina | 372a302 | 2007-12-04 23:45:05 -0800 | [diff] [blame] | 467 | 	clear_bit_unlock(RTC_DEV_BUSY, &rtc->flags); | 
| Alessandro Zummo | e824290 | 2006-03-27 01:16:41 -0800 | [diff] [blame] | 468 | 	return 0; | 
 | 469 | } | 
 | 470 |  | 
| Arjan van de Ven | d54b1fd | 2007-02-12 00:55:34 -0800 | [diff] [blame] | 471 | static const struct file_operations rtc_dev_fops = { | 
| Alessandro Zummo | e824290 | 2006-03-27 01:16:41 -0800 | [diff] [blame] | 472 | 	.owner		= THIS_MODULE, | 
 | 473 | 	.llseek		= no_llseek, | 
 | 474 | 	.read		= rtc_dev_read, | 
 | 475 | 	.poll		= rtc_dev_poll, | 
| David Brownell | 5ad31a5 | 2008-07-23 21:30:33 -0700 | [diff] [blame] | 476 | 	.unlocked_ioctl	= rtc_dev_ioctl, | 
| Alessandro Zummo | e824290 | 2006-03-27 01:16:41 -0800 | [diff] [blame] | 477 | 	.open		= rtc_dev_open, | 
 | 478 | 	.release	= rtc_dev_release, | 
 | 479 | 	.fasync		= rtc_dev_fasync, | 
 | 480 | }; | 
 | 481 |  | 
 | 482 | /* insertion/removal hooks */ | 
 | 483 |  | 
| David Brownell | cb3a58d | 2007-05-08 00:33:46 -0700 | [diff] [blame] | 484 | void rtc_dev_prepare(struct rtc_device *rtc) | 
| Alessandro Zummo | e824290 | 2006-03-27 01:16:41 -0800 | [diff] [blame] | 485 | { | 
| David Brownell | 5726fb2 | 2007-05-08 00:33:27 -0700 | [diff] [blame] | 486 | 	if (!rtc_devt) | 
 | 487 | 		return; | 
| Alessandro Zummo | e824290 | 2006-03-27 01:16:41 -0800 | [diff] [blame] | 488 |  | 
 | 489 | 	if (rtc->id >= RTC_DEV_MAX) { | 
| David Brownell | 5726fb2 | 2007-05-08 00:33:27 -0700 | [diff] [blame] | 490 | 		pr_debug("%s: too many RTC devices\n", rtc->name); | 
 | 491 | 		return; | 
| Alessandro Zummo | e824290 | 2006-03-27 01:16:41 -0800 | [diff] [blame] | 492 | 	} | 
 | 493 |  | 
| David Brownell | cd96620 | 2007-05-08 00:33:40 -0700 | [diff] [blame] | 494 | 	rtc->dev.devt = MKDEV(MAJOR(rtc_devt), rtc->id); | 
| David Brownell | 5726fb2 | 2007-05-08 00:33:27 -0700 | [diff] [blame] | 495 |  | 
| Atsushi Nemoto | 655066c | 2006-06-25 05:48:17 -0700 | [diff] [blame] | 496 | #ifdef CONFIG_RTC_INTF_DEV_UIE_EMUL | 
| David Howells | c402895 | 2006-11-22 14:57:56 +0000 | [diff] [blame] | 497 | 	INIT_WORK(&rtc->uie_task, rtc_uie_task); | 
| Atsushi Nemoto | 655066c | 2006-06-25 05:48:17 -0700 | [diff] [blame] | 498 | 	setup_timer(&rtc->uie_timer, rtc_uie_timer, (unsigned long)rtc); | 
 | 499 | #endif | 
| Alessandro Zummo | e824290 | 2006-03-27 01:16:41 -0800 | [diff] [blame] | 500 |  | 
 | 501 | 	cdev_init(&rtc->char_dev, &rtc_dev_fops); | 
 | 502 | 	rtc->char_dev.owner = rtc->owner; | 
| David Brownell | cb3a58d | 2007-05-08 00:33:46 -0700 | [diff] [blame] | 503 | } | 
| Alessandro Zummo | e824290 | 2006-03-27 01:16:41 -0800 | [diff] [blame] | 504 |  | 
| David Brownell | cb3a58d | 2007-05-08 00:33:46 -0700 | [diff] [blame] | 505 | void rtc_dev_add_device(struct rtc_device *rtc) | 
 | 506 | { | 
| David Brownell | cd96620 | 2007-05-08 00:33:40 -0700 | [diff] [blame] | 507 | 	if (cdev_add(&rtc->char_dev, rtc->dev.devt, 1)) | 
| David Brownell | 5726fb2 | 2007-05-08 00:33:27 -0700 | [diff] [blame] | 508 | 		printk(KERN_WARNING "%s: failed to add char device %d:%d\n", | 
 | 509 | 			rtc->name, MAJOR(rtc_devt), rtc->id); | 
 | 510 | 	else | 
 | 511 | 		pr_debug("%s: dev (%d:%d)\n", rtc->name, | 
| Alessandro Zummo | e824290 | 2006-03-27 01:16:41 -0800 | [diff] [blame] | 512 | 			MAJOR(rtc_devt), rtc->id); | 
| Alessandro Zummo | e824290 | 2006-03-27 01:16:41 -0800 | [diff] [blame] | 513 | } | 
 | 514 |  | 
| David Brownell | 5726fb2 | 2007-05-08 00:33:27 -0700 | [diff] [blame] | 515 | void rtc_dev_del_device(struct rtc_device *rtc) | 
| Alessandro Zummo | e824290 | 2006-03-27 01:16:41 -0800 | [diff] [blame] | 516 | { | 
| David Brownell | cd96620 | 2007-05-08 00:33:40 -0700 | [diff] [blame] | 517 | 	if (rtc->dev.devt) | 
| Alessandro Zummo | e824290 | 2006-03-27 01:16:41 -0800 | [diff] [blame] | 518 | 		cdev_del(&rtc->char_dev); | 
| Alessandro Zummo | e824290 | 2006-03-27 01:16:41 -0800 | [diff] [blame] | 519 | } | 
 | 520 |  | 
| David Brownell | 5726fb2 | 2007-05-08 00:33:27 -0700 | [diff] [blame] | 521 | void __init rtc_dev_init(void) | 
| Alessandro Zummo | e824290 | 2006-03-27 01:16:41 -0800 | [diff] [blame] | 522 | { | 
 | 523 | 	int err; | 
 | 524 |  | 
| Alessandro Zummo | e824290 | 2006-03-27 01:16:41 -0800 | [diff] [blame] | 525 | 	err = alloc_chrdev_region(&rtc_devt, 0, RTC_DEV_MAX, "rtc"); | 
| David Brownell | 5726fb2 | 2007-05-08 00:33:27 -0700 | [diff] [blame] | 526 | 	if (err < 0) | 
| Alessandro Zummo | e824290 | 2006-03-27 01:16:41 -0800 | [diff] [blame] | 527 | 		printk(KERN_ERR "%s: failed to allocate char dev region\n", | 
 | 528 | 			__FILE__); | 
| Alessandro Zummo | e824290 | 2006-03-27 01:16:41 -0800 | [diff] [blame] | 529 | } | 
 | 530 |  | 
| David Brownell | 5726fb2 | 2007-05-08 00:33:27 -0700 | [diff] [blame] | 531 | void __exit rtc_dev_exit(void) | 
| Alessandro Zummo | e824290 | 2006-03-27 01:16:41 -0800 | [diff] [blame] | 532 | { | 
| David Brownell | 5726fb2 | 2007-05-08 00:33:27 -0700 | [diff] [blame] | 533 | 	if (rtc_devt) | 
 | 534 | 		unregister_chrdev_region(rtc_devt, RTC_DEV_MAX); | 
| Alessandro Zummo | e824290 | 2006-03-27 01:16:41 -0800 | [diff] [blame] | 535 | } |