summaryrefslogtreecommitdiffstats
path: root/firmware/target/hosted/rtc.c
blob: ced298a5c810d0762106f86078ed22949fffb5b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
/***************************************************************************
 *             __________               __   ___.
 *   Open      \______   \ ____   ____ |  | _\_ |__   _______  ___
 *   Source     |       _//  _ \_/ ___\|  |/ /| __ \ /  _ \  \/  /
 *   Jukebox    |    |   (  <_> )  \___|    < | \_\ (  <_> > <  <
 *   Firmware   |____|_  /\____/ \___  >__|_ \|___  /\____/__/\_ \
 *                     \/            \/     \/    \/            \/
 * $Id$
 *
 * Based upon code (C) 2002 by Björn Stenberg
 * Copyright (C) 2011 by Thomas Jarosch
 * Copyright (C) 2018 by Marcin Bukat
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 *
 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
 * KIND, either express or implied.
 *
 ****************************************************************************/
#include <time.h>
#include <sys/time.h>
#if !defined(WIN32)
#include <sys/ioctl.h>
#include <linux/rtc.h>
#include <fcntl.h>
#include <unistd.h>
#include <stdbool.h>
#endif

#include "config.h"

void rtc_init(void)
{
  tzset();
}

int rtc_read_datetime(struct tm *tm)
{
    time_t now = time(NULL);
    *tm = *localtime(&now);

    return 0;
}

int rtc_write_datetime(const struct tm *tm)
{
#if !defined(WIN32)
    struct timeval tv;
    struct tm *tm_time;

    tv.tv_sec = mktime((struct tm *)tm);
    tv.tv_usec = 0;

    /* set system clock */
    settimeofday(&tv, NULL);

    /* hw clock stores time in UTC */
    time_t now = time(NULL);
    tm_time = gmtime(&now);

    /* Try to write the HW RTC, if present. */
    int rtc = open("/dev/rtc0", O_WRONLY);
    if (rtc > 0) {
        ioctl(rtc, RTC_SET_TIME, (struct rtc_time *)tm_time);
        close(rtc);
    }
#else
    (void)(*tm);
#endif
    return 0;
}

#if defined(HAVE_RTC_ALARM) && !defined(SIMULATOR)
void rtc_set_alarm(int h, int m)
{
    struct rtc_time tm;
    long sec;

    int rtc = open("/dev/rtc0", O_WRONLY);
    if (rtc < 0)
        return;

    /* Get RTC time */
    ioctl(rtc, RTC_RD_TIME, &tm);

    /* Convert to seconds into the GMT day.  Can be negative! */
    sec = h * 3600 + m * 60 + timezone;
    h = sec / 3600;
    sec -= h * 3600;
    m = sec / 60;

    /* Handle negative or positive wraps */
    while (m < 0) {
        m += 60;
        h--;
    }
    while (m > 59) {
        m -= 60;
        h++;
    }
    while (h < 0) {
        h += 24;
	tm.tm_mday--;
    }
    while (h > 23) {
        h -= 24;
	tm.tm_mday++;
    }

    /* Update the struct */
    tm.tm_sec = 0;
    tm.tm_hour = h;
    tm.tm_min = m;

    ioctl(rtc, RTC_ALM_SET, &tm);
    close(rtc);
}

void rtc_get_alarm(int *h, int *m)
{
    struct rtc_time tm;
    long sec;

    int rtc = open("/dev/rtc0", O_WRONLY);
    if (rtc < 0)
        return;

    ioctl(rtc, RTC_ALM_READ, &tm);
    close(rtc);

    /* Convert RTC from UTC to local time zone.. */
    sec = (tm.tm_min * 60) + (tm.tm_hour * 3600) - timezone;

    /* Handle wrapping and negative offsets */
    *h = (sec / 3600);
    sec -= *h * 3600;
    *m = sec / 60;

    while (*m < 0) {
        *m = *m + 60;
        *h = *h - 1;
    }
    while (*m > 59) {
        *m = *m - 60;
        *h = *h + 1;
    }
    while (*h < 0) {
        *h = *h + 24;
    }
    while (*h > 23) {
        *h = *h - 24;
    }
}

void rtc_enable_alarm(bool enable)
{
    int rtc = open("/dev/rtc0", O_WRONLY);
    if (rtc < 0)
        return;

    ioctl(rtc, enable ? RTC_AIE_ON : RTC_AIE_OFF, NULL);
    close(rtc);

    /* XXX Note that this may or may not work; Linux may need to be suspended
       or shut down in a special way to keep the RTC alarm active */
}

/* Returns true if alarm was the reason we started up */
bool rtc_check_alarm_started(bool release_alarm)
{
    int rtc = open("/dev/rtc0", O_WRONLY);
    if (rtc < 0)
        return false;

    /* XXX There is no generic way of determining wakeup reason.  Will
       likely need a target-specific hook. */

    /* Disable alarm if requested */
    if (release_alarm)
        ioctl(rtc, RTC_AIE_OFF, NULL);

    close(rtc);
    return false;
}

/* See if we received an alarm. */
bool rtc_check_alarm_flag(void)
{
    struct rtc_wkalrm alrm;

    int rtc = open("/dev/rtc0", O_WRONLY);
    if (rtc < 0)
        return false;

    alrm.pending = 0;
    /* XXX Documented as "mostly useless on Linux" except with EFI RTCs
       Will likely need a target-specific hook. */
    ioctl(rtc, RTC_WKALM_RD, &alrm);
    close(rtc);

    return alrm.pending;
}

#endif /* HAVE_RTC_ALARM */