blob: 8d300e6d0d9e92eedc96a87cc2055cc4062d7180 [file] [log] [blame]
Alessandro Zummo728a2942006-03-27 01:16:40 -08001/*
2 * RTC subsystem, proc interface
3 *
4 * Copyright (C) 2005-06 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>
16#include <linux/proc_fs.h>
17#include <linux/seq_file.h>
18
David Brownellab6a2d72007-05-08 00:33:30 -070019#include "rtc-core.h"
20
21
Alessandro Zummo728a2942006-03-27 01:16:40 -080022static int rtc_proc_show(struct seq_file *seq, void *offset)
23{
24 int err;
David Brownellab6a2d72007-05-08 00:33:30 -070025 struct rtc_device *rtc = seq->private;
26 const struct rtc_class_ops *ops = rtc->ops;
Alessandro Zummo728a2942006-03-27 01:16:40 -080027 struct rtc_wkalrm alrm;
28 struct rtc_time tm;
29
David Brownellab6a2d72007-05-08 00:33:30 -070030 err = rtc_read_time(rtc, &tm);
Alessandro Zummo728a2942006-03-27 01:16:40 -080031 if (err == 0) {
32 seq_printf(seq,
33 "rtc_time\t: %02d:%02d:%02d\n"
34 "rtc_date\t: %04d-%02d-%02d\n",
35 tm.tm_hour, tm.tm_min, tm.tm_sec,
36 tm.tm_year + 1900, tm.tm_mon + 1, tm.tm_mday);
37 }
38
David Brownellab6a2d72007-05-08 00:33:30 -070039 err = rtc_read_alarm(rtc, &alrm);
Alessandro Zummo728a2942006-03-27 01:16:40 -080040 if (err == 0) {
41 seq_printf(seq, "alrm_time\t: ");
42 if ((unsigned int)alrm.time.tm_hour <= 24)
43 seq_printf(seq, "%02d:", alrm.time.tm_hour);
44 else
45 seq_printf(seq, "**:");
46 if ((unsigned int)alrm.time.tm_min <= 59)
47 seq_printf(seq, "%02d:", alrm.time.tm_min);
48 else
49 seq_printf(seq, "**:");
50 if ((unsigned int)alrm.time.tm_sec <= 59)
51 seq_printf(seq, "%02d\n", alrm.time.tm_sec);
52 else
53 seq_printf(seq, "**\n");
54
55 seq_printf(seq, "alrm_date\t: ");
56 if ((unsigned int)alrm.time.tm_year <= 200)
57 seq_printf(seq, "%04d-", alrm.time.tm_year + 1900);
58 else
59 seq_printf(seq, "****-");
60 if ((unsigned int)alrm.time.tm_mon <= 11)
61 seq_printf(seq, "%02d-", alrm.time.tm_mon + 1);
62 else
63 seq_printf(seq, "**-");
David Brownelldb621f12006-09-30 23:28:16 -070064 if (alrm.time.tm_mday && (unsigned int)alrm.time.tm_mday <= 31)
Alessandro Zummo728a2942006-03-27 01:16:40 -080065 seq_printf(seq, "%02d\n", alrm.time.tm_mday);
66 else
67 seq_printf(seq, "**\n");
David Brownella2db8df2006-12-13 00:35:08 -080068 seq_printf(seq, "alarm_IRQ\t: %s\n",
Alessandro Zummo728a2942006-03-27 01:16:40 -080069 alrm.enabled ? "yes" : "no");
70 seq_printf(seq, "alrm_pending\t: %s\n",
71 alrm.pending ? "yes" : "no");
72 }
73
Alessandro Zummoadfb4342006-04-10 22:54:43 -070074 seq_printf(seq, "24hr\t\t: yes\n");
75
Alessandro Zummo728a2942006-03-27 01:16:40 -080076 if (ops->proc)
David Brownellcd966202007-05-08 00:33:40 -070077 ops->proc(rtc->dev.parent, seq);
Alessandro Zummo728a2942006-03-27 01:16:40 -080078
79 return 0;
80}
81
82static int rtc_proc_open(struct inode *inode, struct file *file)
83{
David Brownellab6a2d72007-05-08 00:33:30 -070084 struct rtc_device *rtc = PDE(inode)->data;
Alessandro Zummo728a2942006-03-27 01:16:40 -080085
86 if (!try_module_get(THIS_MODULE))
87 return -ENODEV;
88
David Brownellab6a2d72007-05-08 00:33:30 -070089 return single_open(file, rtc_proc_show, rtc);
Alessandro Zummo728a2942006-03-27 01:16:40 -080090}
91
92static int rtc_proc_release(struct inode *inode, struct file *file)
93{
94 int res = single_release(inode, file);
95 module_put(THIS_MODULE);
96 return res;
97}
98
Arjan van de Vend54b1fd2007-02-12 00:55:34 -080099static const struct file_operations rtc_proc_fops = {
Alessandro Zummo728a2942006-03-27 01:16:40 -0800100 .open = rtc_proc_open,
101 .read = seq_read,
102 .llseek = seq_lseek,
103 .release = rtc_proc_release,
104};
105
David Brownell7d9f99e2007-05-08 00:33:38 -0700106void rtc_proc_add_device(struct rtc_device *rtc)
Alessandro Zummo728a2942006-03-27 01:16:40 -0800107{
David Brownell7d9f99e2007-05-08 00:33:38 -0700108 if (rtc->id == 0) {
Alessandro Zummo728a2942006-03-27 01:16:40 -0800109 struct proc_dir_entry *ent;
110
Alessandro Zummo728a2942006-03-27 01:16:40 -0800111 ent = create_proc_entry("driver/rtc", 0, NULL);
112 if (ent) {
Alessandro Zummo728a2942006-03-27 01:16:40 -0800113 ent->proc_fops = &rtc_proc_fops;
114 ent->owner = rtc->owner;
David Brownellab6a2d72007-05-08 00:33:30 -0700115 ent->data = rtc;
Alessandro Zummo728a2942006-03-27 01:16:40 -0800116 }
Alessandro Zummo728a2942006-03-27 01:16:40 -0800117 }
Alessandro Zummo728a2942006-03-27 01:16:40 -0800118}
119
David Brownell7d9f99e2007-05-08 00:33:38 -0700120void rtc_proc_del_device(struct rtc_device *rtc)
Alessandro Zummo728a2942006-03-27 01:16:40 -0800121{
David Brownell7d9f99e2007-05-08 00:33:38 -0700122 if (rtc->id == 0)
Alessandro Zummo728a2942006-03-27 01:16:40 -0800123 remove_proc_entry("driver/rtc", NULL);
Alessandro Zummo728a2942006-03-27 01:16:40 -0800124}