blob: 7f123e487dd5cb101b061119c7b05c8b1dde8481 [file] [log] [blame]
Dmitry V. Levin746db062015-07-04 08:56:21 +00001/*
2 * Copyright (c) 2004 Ulrich Drepper <drepper@redhat.com>
Dmitry V. Levin5d7812a2016-05-25 15:59:27 +00003 * Copyright (c) 2004-2016 Dmitry V. Levin <ldv@altlinux.org>
Dmitry V. Levin746db062015-07-04 08:56:21 +00004 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:
9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * 2. Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * 3. The name of the author may not be used to endorse or promote products
15 * derived from this software without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
29#include "defs.h"
Dmitry V. Levin5d7812a2016-05-25 15:59:27 +000030
31#include DEF_MPERS_TYPE(struct_rtc_pll_info)
32
Dmitry V. Levin746db062015-07-04 08:56:21 +000033#include <linux/ioctl.h>
34#include <linux/rtc.h>
35
Dmitry V. Levin5d7812a2016-05-25 15:59:27 +000036typedef struct rtc_pll_info struct_rtc_pll_info;
37
38#include MPERS_DEFS
39
Dmitry V. Levin746db062015-07-04 08:56:21 +000040static void
Dmitry V. Levin97317d92015-07-04 15:07:35 +030041print_rtc_time(struct tcb *tcp, const struct rtc_time *rt)
Dmitry V. Levin746db062015-07-04 08:56:21 +000042{
43 tprintf("{tm_sec=%d, tm_min=%d, tm_hour=%d, "
44 "tm_mday=%d, tm_mon=%d, tm_year=%d, ",
45 rt->tm_sec, rt->tm_min, rt->tm_hour,
46 rt->tm_mday, rt->tm_mon, rt->tm_year);
47 if (!abbrev(tcp))
48 tprintf("tm_wday=%d, tm_yday=%d, tm_isdst=%d}",
49 rt->tm_wday, rt->tm_yday, rt->tm_isdst);
50 else
51 tprints("...}");
52}
53
Dmitry V. Levin97317d92015-07-04 15:07:35 +030054static void
55decode_rtc_time(struct tcb *tcp, const long addr)
56{
57 struct rtc_time rt;
58
Dmitry V. Levin97317d92015-07-04 15:07:35 +030059 if (!umove_or_printaddr(tcp, addr, &rt))
60 print_rtc_time(tcp, &rt);
61}
62
63static void
64decode_rtc_wkalrm(struct tcb *tcp, const long addr)
65{
66 struct rtc_wkalrm wk;
67
Dmitry V. Levin97317d92015-07-04 15:07:35 +030068 if (!umove_or_printaddr(tcp, addr, &wk)) {
Dmitry V. Levin7e3a3812016-05-25 15:28:23 +000069 tprintf("{enabled=%d, pending=%d, time=", wk.enabled, wk.pending);
Dmitry V. Levin97317d92015-07-04 15:07:35 +030070 print_rtc_time(tcp, &wk.time);
71 tprints("}");
72 }
73}
74
Dmitry V. Levin3adf2292016-05-25 07:43:15 +000075static void
76decode_rtc_pll_info(struct tcb *tcp, const long addr)
77{
Dmitry V. Levin5d7812a2016-05-25 15:59:27 +000078 struct_rtc_pll_info pll;
Dmitry V. Levin3adf2292016-05-25 07:43:15 +000079
80 if (!umove_or_printaddr(tcp, addr, &pll))
81 tprintf("{pll_ctrl=%d, pll_value=%d, pll_max=%d, pll_min=%d"
82 ", pll_posmult=%d, pll_negmult=%d, pll_clock=%ld}",
83 pll.pll_ctrl, pll.pll_value, pll.pll_max, pll.pll_min,
Dmitry V. Levin5d7812a2016-05-25 15:59:27 +000084 pll.pll_posmult, pll.pll_negmult, (long) pll.pll_clock);
Dmitry V. Levin3adf2292016-05-25 07:43:15 +000085}
86
Dmitry V. Levin5d7812a2016-05-25 15:59:27 +000087MPERS_PRINTER_DECL(int, rtc_ioctl, struct tcb *tcp,
88 const unsigned int code, const long arg)
Dmitry V. Levin746db062015-07-04 08:56:21 +000089{
90 switch (code) {
Dmitry V. Levin746db062015-07-04 08:56:21 +000091 case RTC_ALM_READ:
92 case RTC_RD_TIME:
Dmitry V. Levin97317d92015-07-04 15:07:35 +030093 if (entering(tcp))
94 return 0;
Dmitry V. Levine0b5e912016-05-25 07:37:44 +000095 /* fall through */
96 case RTC_ALM_SET:
97 case RTC_SET_TIME:
98 tprints(", ");
Dmitry V. Levin97317d92015-07-04 15:07:35 +030099 decode_rtc_time(tcp, arg);
Dmitry V. Levin746db062015-07-04 08:56:21 +0000100 break;
101 case RTC_IRQP_SET:
102 case RTC_EPOCH_SET:
Dmitry V. Levin97317d92015-07-04 15:07:35 +0300103 tprintf(", %lu", arg);
Dmitry V. Levin746db062015-07-04 08:56:21 +0000104 break;
105 case RTC_IRQP_READ:
106 case RTC_EPOCH_READ:
Dmitry V. Levin97317d92015-07-04 15:07:35 +0300107 if (entering(tcp))
108 return 0;
109 tprints(", ");
Dmitry V. Levin2479ef02015-08-18 14:58:27 +0000110 printnum_ulong(tcp, arg);
Dmitry V. Levin746db062015-07-04 08:56:21 +0000111 break;
Dmitry V. Levin746db062015-07-04 08:56:21 +0000112 case RTC_WKALM_RD:
Dmitry V. Levin97317d92015-07-04 15:07:35 +0300113 if (entering(tcp))
114 return 0;
Dmitry V. Levine0b5e912016-05-25 07:37:44 +0000115 /* fall through */
116 case RTC_WKALM_SET:
117 tprints(", ");
Dmitry V. Levin97317d92015-07-04 15:07:35 +0300118 decode_rtc_wkalrm(tcp, arg);
Dmitry V. Levin746db062015-07-04 08:56:21 +0000119 break;
Dmitry V. Levin3adf2292016-05-25 07:43:15 +0000120 case RTC_PLL_GET:
121 if (entering(tcp))
122 return 0;
123 /* fall through */
124 case RTC_PLL_SET:
125 tprints(", ");
126 decode_rtc_pll_info(tcp, arg);
127 break;
Dmitry V. Levin97317d92015-07-04 15:07:35 +0300128#ifdef RTC_VL_READ
129 case RTC_VL_READ:
130 if (entering(tcp))
131 return 0;
132 tprints(", ");
133 printnum_int(tcp, arg, "%d");
134 break;
135#endif
Dmitry V. Levin60858252016-05-25 07:44:19 +0000136 case RTC_AIE_ON:
137 case RTC_AIE_OFF:
138 case RTC_UIE_ON:
139 case RTC_UIE_OFF:
140 case RTC_PIE_ON:
141 case RTC_PIE_OFF:
142 case RTC_WIE_ON:
143 case RTC_WIE_OFF:
144#ifdef RTC_VL_CLR
145 case RTC_VL_CLR:
146#endif
147 /* no args */
148 break;
Dmitry V. Levin746db062015-07-04 08:56:21 +0000149 default:
Dmitry V. Levin97317d92015-07-04 15:07:35 +0300150 return RVAL_DECODED;
Dmitry V. Levin746db062015-07-04 08:56:21 +0000151 }
Dmitry V. Levin97317d92015-07-04 15:07:35 +0300152
153 return RVAL_DECODED | 1;
Dmitry V. Levin746db062015-07-04 08:56:21 +0000154}