Input: pcap_ts - use to_delayed_work
[linux-2.6/btrfs-unstable.git] / drivers / rtc / rtc-sysfs.c
blob7273855ed02eff9eaad5c93663ebe67f030ebc71
1 /*
2 * RTC subsystem, sysfs interface
4 * Copyright (C) 2005 Tower Technologies
5 * Author: Alessandro Zummo <a.zummo@towertech.it>
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
12 #include <linux/module.h>
13 #include <linux/rtc.h>
15 #include "rtc-core.h"
18 /* device attributes */
21 * NOTE: RTC times displayed in sysfs use the RTC's timezone. That's
22 * ideally UTC. However, PCs that also boot to MS-Windows normally use
23 * the local time and change to match daylight savings time. That affects
24 * attributes including date, time, since_epoch, and wakealarm.
27 static ssize_t
28 name_show(struct device *dev, struct device_attribute *attr, char *buf)
30 return sprintf(buf, "%s\n", to_rtc_device(dev)->name);
32 static DEVICE_ATTR_RO(name);
34 static ssize_t
35 date_show(struct device *dev, struct device_attribute *attr, char *buf)
37 ssize_t retval;
38 struct rtc_time tm;
40 retval = rtc_read_time(to_rtc_device(dev), &tm);
41 if (retval == 0) {
42 retval = sprintf(buf, "%04d-%02d-%02d\n",
43 tm.tm_year + 1900, tm.tm_mon + 1, tm.tm_mday);
46 return retval;
48 static DEVICE_ATTR_RO(date);
50 static ssize_t
51 time_show(struct device *dev, struct device_attribute *attr, char *buf)
53 ssize_t retval;
54 struct rtc_time tm;
56 retval = rtc_read_time(to_rtc_device(dev), &tm);
57 if (retval == 0) {
58 retval = sprintf(buf, "%02d:%02d:%02d\n",
59 tm.tm_hour, tm.tm_min, tm.tm_sec);
62 return retval;
64 static DEVICE_ATTR_RO(time);
66 static ssize_t
67 since_epoch_show(struct device *dev, struct device_attribute *attr, char *buf)
69 ssize_t retval;
70 struct rtc_time tm;
72 retval = rtc_read_time(to_rtc_device(dev), &tm);
73 if (retval == 0) {
74 unsigned long time;
75 rtc_tm_to_time(&tm, &time);
76 retval = sprintf(buf, "%lu\n", time);
79 return retval;
81 static DEVICE_ATTR_RO(since_epoch);
83 static ssize_t
84 max_user_freq_show(struct device *dev, struct device_attribute *attr, char *buf)
86 return sprintf(buf, "%d\n", to_rtc_device(dev)->max_user_freq);
89 static ssize_t
90 max_user_freq_store(struct device *dev, struct device_attribute *attr,
91 const char *buf, size_t n)
93 struct rtc_device *rtc = to_rtc_device(dev);
94 unsigned long val = simple_strtoul(buf, NULL, 0);
96 if (val >= 4096 || val == 0)
97 return -EINVAL;
99 rtc->max_user_freq = (int)val;
101 return n;
103 static DEVICE_ATTR_RW(max_user_freq);
106 * rtc_sysfs_show_hctosys - indicate if the given RTC set the system time
108 * Returns 1 if the system clock was set by this RTC at the last
109 * boot or resume event.
111 static ssize_t
112 hctosys_show(struct device *dev, struct device_attribute *attr, char *buf)
114 #ifdef CONFIG_RTC_HCTOSYS_DEVICE
115 if (rtc_hctosys_ret == 0 &&
116 strcmp(dev_name(&to_rtc_device(dev)->dev),
117 CONFIG_RTC_HCTOSYS_DEVICE) == 0)
118 return sprintf(buf, "1\n");
119 else
120 #endif
121 return sprintf(buf, "0\n");
123 static DEVICE_ATTR_RO(hctosys);
125 static ssize_t
126 wakealarm_show(struct device *dev, struct device_attribute *attr, char *buf)
128 ssize_t retval;
129 unsigned long alarm;
130 struct rtc_wkalrm alm;
132 /* Don't show disabled alarms. For uniformity, RTC alarms are
133 * conceptually one-shot, even though some common RTCs (on PCs)
134 * don't actually work that way.
136 * NOTE: RTC implementations where the alarm doesn't match an
137 * exact YYYY-MM-DD HH:MM[:SS] date *must* disable their RTC
138 * alarms after they trigger, to ensure one-shot semantics.
140 retval = rtc_read_alarm(to_rtc_device(dev), &alm);
141 if (retval == 0 && alm.enabled) {
142 rtc_tm_to_time(&alm.time, &alarm);
143 retval = sprintf(buf, "%lu\n", alarm);
146 return retval;
149 static ssize_t
150 wakealarm_store(struct device *dev, struct device_attribute *attr,
151 const char *buf, size_t n)
153 ssize_t retval;
154 unsigned long now, alarm;
155 unsigned long push = 0;
156 struct rtc_wkalrm alm;
157 struct rtc_device *rtc = to_rtc_device(dev);
158 char *buf_ptr;
159 int adjust = 0;
161 /* Only request alarms that trigger in the future. Disable them
162 * by writing another time, e.g. 0 meaning Jan 1 1970 UTC.
164 retval = rtc_read_time(rtc, &alm.time);
165 if (retval < 0)
166 return retval;
167 rtc_tm_to_time(&alm.time, &now);
169 buf_ptr = (char *)buf;
170 if (*buf_ptr == '+') {
171 buf_ptr++;
172 if (*buf_ptr == '=') {
173 buf_ptr++;
174 push = 1;
175 } else
176 adjust = 1;
178 alarm = simple_strtoul(buf_ptr, NULL, 0);
179 if (adjust) {
180 alarm += now;
182 if (alarm > now || push) {
183 /* Avoid accidentally clobbering active alarms; we can't
184 * entirely prevent that here, without even the minimal
185 * locking from the /dev/rtcN api.
187 retval = rtc_read_alarm(rtc, &alm);
188 if (retval < 0)
189 return retval;
190 if (alm.enabled) {
191 if (push) {
192 rtc_tm_to_time(&alm.time, &push);
193 alarm += push;
194 } else
195 return -EBUSY;
196 } else if (push)
197 return -EINVAL;
198 alm.enabled = 1;
199 } else {
200 alm.enabled = 0;
202 /* Provide a valid future alarm time. Linux isn't EFI,
203 * this time won't be ignored when disabling the alarm.
205 alarm = now + 300;
207 rtc_time_to_tm(alarm, &alm.time);
209 retval = rtc_set_alarm(rtc, &alm);
210 return (retval < 0) ? retval : n;
212 static DEVICE_ATTR_RW(wakealarm);
214 static struct attribute *rtc_attrs[] = {
215 &dev_attr_name.attr,
216 &dev_attr_date.attr,
217 &dev_attr_time.attr,
218 &dev_attr_since_epoch.attr,
219 &dev_attr_max_user_freq.attr,
220 &dev_attr_hctosys.attr,
221 &dev_attr_wakealarm.attr,
222 NULL,
225 /* The reason to trigger an alarm with no process watching it (via sysfs)
226 * is its side effect: waking from a system state like suspend-to-RAM or
227 * suspend-to-disk. So: no attribute unless that side effect is possible.
228 * (Userspace may disable that mechanism later.)
230 static bool rtc_does_wakealarm(struct rtc_device *rtc)
232 if (!device_can_wakeup(rtc->dev.parent))
233 return false;
235 return rtc->ops->set_alarm != NULL;
238 static umode_t rtc_attr_is_visible(struct kobject *kobj,
239 struct attribute *attr, int n)
241 struct device *dev = container_of(kobj, struct device, kobj);
242 struct rtc_device *rtc = to_rtc_device(dev);
243 umode_t mode = attr->mode;
245 if (attr == &dev_attr_wakealarm.attr)
246 if (!rtc_does_wakealarm(rtc))
247 mode = 0;
249 return mode;
252 static struct attribute_group rtc_attr_group = {
253 .is_visible = rtc_attr_is_visible,
254 .attrs = rtc_attrs,
257 static const struct attribute_group *rtc_attr_groups[] = {
258 &rtc_attr_group,
259 NULL
262 const struct attribute_group **rtc_get_dev_attribute_groups(void)
264 return rtc_attr_groups;