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>
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);
94 unsigned long val = simple_strtoul(buf, NULL, 0);
96 if (val >= 4096 || val == 0)
99 rtc->max_user_freq = (int)val;
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.
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");
121 return sprintf(buf, "0\n");
123 static DEVICE_ATTR_RO(hctosys);
126 wakealarm_show(struct device *dev, struct device_attribute *attr, char *buf)
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);
150 wakealarm_store(struct device *dev, struct device_attribute *attr,
151 const char *buf, size_t n)
154 unsigned long now, alarm;
155 unsigned long push = 0;
156 struct rtc_wkalrm alm;
157 struct rtc_device *rtc = to_rtc_device(dev);
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);
167 rtc_tm_to_time(&alm.time, &now);
169 buf_ptr = (char *)buf;
170 if (*buf_ptr == '+') {
172 if (*buf_ptr == '=') {
178 alarm = simple_strtoul(buf_ptr, NULL, 0);
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);
192 rtc_tm_to_time(&alm.time, &push);
202 /* Provide a valid future alarm time. Linux isn't EFI,
203 * this time won't be ignored when disabling the alarm.
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[] = {
218 &dev_attr_since_epoch.attr,
219 &dev_attr_max_user_freq.attr,
220 &dev_attr_hctosys.attr,
221 &dev_attr_wakealarm.attr,
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))
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))
252 static struct attribute_group rtc_attr_group = {
253 .is_visible = rtc_attr_is_visible,
257 static const struct attribute_group *rtc_attr_groups[] = {
262 const struct attribute_group **rtc_get_dev_attribute_groups(void)
264 return rtc_attr_groups;