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