2 * RTC subsystem, sysfs interface
4 * Copyright (C) 2005 Tower Technologies
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>
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.
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);
35 date_show(struct device *dev, struct device_attribute *attr, char *buf)
40 retval = rtc_read_time(to_rtc_device(dev), &tm);
42 retval = sprintf(buf, "%04d-%02d-%02d\n",
43 tm.tm_year + 1900, tm.tm_mon + 1, tm.tm_mday);
48 static DEVICE_ATTR_RO(date);
51 time_show(struct device *dev, struct device_attribute *attr, char *buf)
56 retval = rtc_read_time(to_rtc_device(dev), &tm);
58 retval = sprintf(buf, "%02d:%02d:%02d\n",
59 tm.tm_hour, tm.tm_min, tm.tm_sec);
64 static DEVICE_ATTR_RO(time);
67 since_epoch_show(struct device *dev, struct device_attribute *attr, char *buf)
72 retval = rtc_read_time(to_rtc_device(dev), &tm);
75 rtc_tm_to_time(&tm, &time);
76 retval = sprintf(buf, "%lu\n", time);
81 static DEVICE_ATTR_RO(since_epoch);
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);
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);
97 err = kstrtoul(buf, 0, &val);
101 if (val >= 4096 || val == 0)
104 rtc->max_user_freq = (int)val;
108 static DEVICE_ATTR_RW(max_user_freq);
111 * rtc_sysfs_show_hctosys - indicate if the given RTC set the system time
113 * Returns 1 if the system clock was set by this RTC at the last
114 * boot or resume event.
117 hctosys_show(struct device *dev, struct device_attribute *attr, char *buf)
119 #ifdef CONFIG_RTC_HCTOSYS_DEVICE
120 if (rtc_hctosys_ret == 0 &&
121 strcmp(dev_name(&to_rtc_device(dev)->dev),
122 CONFIG_RTC_HCTOSYS_DEVICE) == 0)
123 return sprintf(buf, "1\n");
126 return sprintf(buf, "0\n");
128 static DEVICE_ATTR_RO(hctosys);
131 wakealarm_show(struct device *dev, struct device_attribute *attr, char *buf)
135 struct rtc_wkalrm alm;
137 /* Don't show disabled alarms. For uniformity, RTC alarms are
138 * conceptually one-shot, even though some common RTCs (on PCs)
139 * don't actually work that way.
141 * NOTE: RTC implementations where the alarm doesn't match an
142 * exact YYYY-MM-DD HH:MM[:SS] date *must* disable their RTC
143 * alarms after they trigger, to ensure one-shot semantics.
145 retval = rtc_read_alarm(to_rtc_device(dev), &alm);
146 if (retval == 0 && alm.enabled) {
147 rtc_tm_to_time(&alm.time, &alarm);
148 retval = sprintf(buf, "%lu\n", alarm);
155 wakealarm_store(struct device *dev, struct device_attribute *attr,
156 const char *buf, size_t n)
159 unsigned long now, alarm;
160 unsigned long push = 0;
161 struct rtc_wkalrm alm;
162 struct rtc_device *rtc = to_rtc_device(dev);
166 /* Only request alarms that trigger in the future. Disable them
167 * by writing another time, e.g. 0 meaning Jan 1 1970 UTC.
169 retval = rtc_read_time(rtc, &alm.time);
172 rtc_tm_to_time(&alm.time, &now);
174 buf_ptr = (char *)buf;
175 if (*buf_ptr == '+') {
177 if (*buf_ptr == '=') {
183 retval = kstrtoul(buf_ptr, 0, &alarm);
189 if (alarm > now || push) {
190 /* Avoid accidentally clobbering active alarms; we can't
191 * entirely prevent that here, without even the minimal
192 * locking from the /dev/rtcN api.
194 retval = rtc_read_alarm(rtc, &alm);
199 rtc_tm_to_time(&alm.time, &push);
209 /* Provide a valid future alarm time. Linux isn't EFI,
210 * this time won't be ignored when disabling the alarm.
214 rtc_time_to_tm(alarm, &alm.time);
216 retval = rtc_set_alarm(rtc, &alm);
217 return (retval < 0) ? retval : n;
219 static DEVICE_ATTR_RW(wakealarm);
222 offset_show(struct device *dev, struct device_attribute *attr, char *buf)
227 retval = rtc_read_offset(to_rtc_device(dev), &offset);
229 retval = sprintf(buf, "%ld\n", offset);
235 offset_store(struct device *dev, struct device_attribute *attr,
236 const char *buf, size_t n)
241 retval = kstrtol(buf, 10, &offset);
243 retval = rtc_set_offset(to_rtc_device(dev), offset);
245 return (retval < 0) ? retval : n;
247 static DEVICE_ATTR_RW(offset);
249 static struct attribute *rtc_attrs[] = {
253 &dev_attr_since_epoch.attr,
254 &dev_attr_max_user_freq.attr,
255 &dev_attr_hctosys.attr,
256 &dev_attr_wakealarm.attr,
257 &dev_attr_offset.attr,
261 /* The reason to trigger an alarm with no process watching it (via sysfs)
262 * is its side effect: waking from a system state like suspend-to-RAM or
263 * suspend-to-disk. So: no attribute unless that side effect is possible.
264 * (Userspace may disable that mechanism later.)
266 static bool rtc_does_wakealarm(struct rtc_device *rtc)
268 if (!device_can_wakeup(rtc->dev.parent))
271 return rtc->ops->set_alarm != NULL;
274 static umode_t rtc_attr_is_visible(struct kobject *kobj,
275 struct attribute *attr, int n)
277 struct device *dev = container_of(kobj, struct device, kobj);
278 struct rtc_device *rtc = to_rtc_device(dev);
279 umode_t mode = attr->mode;
281 if (attr == &dev_attr_wakealarm.attr) {
282 if (!rtc_does_wakealarm(rtc))
284 } else if (attr == &dev_attr_offset.attr) {
285 if (!rtc->ops->set_offset)
292 static struct attribute_group rtc_attr_group = {
293 .is_visible = rtc_attr_is_visible,
297 static const struct attribute_group *rtc_attr_groups[] = {
302 const struct attribute_group **rtc_get_dev_attribute_groups(void)
304 return rtc_attr_groups;