diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/rtc_.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/include/rtc_.h b/include/rtc_.h index 24ff5363f..782966090 100644 --- a/include/rtc_.h +++ b/include/rtc_.h | |||
@@ -46,6 +46,17 @@ struct linux_rtc_wkalrm { | |||
46 | struct linux_rtc_time time; /* time the alarm is set to */ | 46 | struct linux_rtc_time time; /* time the alarm is set to */ |
47 | }; | 47 | }; |
48 | 48 | ||
49 | struct rtc_param { | ||
50 | uint64_t param; | ||
51 | union { | ||
52 | uint64_t uvalue; | ||
53 | int64_t svalue; | ||
54 | uint64_t ptr; | ||
55 | }; | ||
56 | uint32_t index; | ||
57 | uint32_t __pad; | ||
58 | }; | ||
59 | |||
49 | /* | 60 | /* |
50 | * ioctl calls that are permitted to the /dev/rtc interface, if | 61 | * ioctl calls that are permitted to the /dev/rtc interface, if |
51 | * any of the RTC drivers are enabled. | 62 | * any of the RTC drivers are enabled. |
@@ -71,12 +82,19 @@ struct linux_rtc_wkalrm { | |||
71 | #define RTC_WKALM_SET _IOW('p', 0x0f, struct linux_rtc_wkalrm)/* Set wakeup alarm*/ | 82 | #define RTC_WKALM_SET _IOW('p', 0x0f, struct linux_rtc_wkalrm)/* Set wakeup alarm*/ |
72 | #define RTC_WKALM_RD _IOR('p', 0x10, struct linux_rtc_wkalrm)/* Get wakeup alarm*/ | 83 | #define RTC_WKALM_RD _IOR('p', 0x10, struct linux_rtc_wkalrm)/* Get wakeup alarm*/ |
73 | 84 | ||
85 | #define RTC_PARAM_GET _IOW('p', 0x13, struct rtc_param) /* Get parameter */ | ||
86 | #define RTC_PARAM_SET _IOW('p', 0x14, struct rtc_param) /* Set parameter */ | ||
87 | |||
74 | /* interrupt flags */ | 88 | /* interrupt flags */ |
75 | #define RTC_IRQF 0x80 /* any of the following is active */ | 89 | #define RTC_IRQF 0x80 /* any of the following is active */ |
76 | #define RTC_PF 0x40 | 90 | #define RTC_PF 0x40 |
77 | #define RTC_AF 0x20 | 91 | #define RTC_AF 0x20 |
78 | #define RTC_UF 0x10 | 92 | #define RTC_UF 0x10 |
79 | 93 | ||
94 | #define RTC_PARAM_FEATURES 0 | ||
95 | #define RTC_PARAM_CORRECTION 1 | ||
96 | #define RTC_PARAM_BACKUP_SWITCH_MODE 2 | ||
97 | |||
80 | POP_SAVED_FUNCTION_VISIBILITY | 98 | POP_SAVED_FUNCTION_VISIBILITY |
81 | 99 | ||
82 | #endif | 100 | #endif |