forked from micropython/micropython
-
Notifications
You must be signed in to change notification settings - Fork 0
/
machine_rtc.c
351 lines (321 loc) · 10.9 KB
/
machine_rtc.c
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
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
/*
* This file is part of the MicroPython project, http://micropython.org/
*
* The MIT License (MIT)
*
* Copyright (c) 2013, 2014 Damien P. George
* Copyright (c) 2021 Renesas Electronics Corporation
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
#include <stdio.h>
#include "py/runtime.h"
#include "extmod/modmachine.h"
#include "shared/timeutils/timeutils.h"
#include "extint.h"
#include "rtc.h"
#include "irq.h"
#if defined(RA4M1) | defined(RA4M3) | defined(RA4W1) | defined(RA6M1) | defined(RA6M2) | defined(RA6M3)
#include "ra_rtc.h"
#endif
#define RTC_INIT_YEAR 2019
#define RTC_INIT_MONTH 1
#define RTC_INIT_DATE 1
#define RTC_INIT_WEEKDAY 2 /* Tuesday */
#define RTC_INIT_HOUR 0
#define RTC_INIT_MINUTE 0
#define RTC_INIT_SECOND 0
/// \moduleref pyb
/// \class RTC - real time clock
///
/// The RTC is and independent clock that keeps track of the date
/// and time.
///
/// Example usage:
///
/// rtc = pyb.RTC()
/// rtc.datetime((2014, 5, 1, 4, 13, 0, 0, 0))
/// print(rtc.datetime())
#define HAL_StatusTypeDef void
// rtc_info indicates various things about RTC startup
// it's a bit of a hack at the moment
static mp_uint_t rtc_info;
static uint32_t rtc_startup_tick;
static bool rtc_need_init_finalise = false;
static uint32_t rtc_wakeup_param;
static void rtc_calendar_config(void) {
ra_rtc_t tm;
tm.year = RTC_INIT_YEAR - 2000;
tm.month = RTC_INIT_MONTH;
tm.date = RTC_INIT_DATE;
tm.weekday = RTC_INIT_WEEKDAY;
tm.hour = RTC_INIT_HOUR;
tm.minute = RTC_INIT_MINUTE;
tm.second = RTC_INIT_SECOND;
ra_rtc_set_time(&tm);
}
void rtc_get_time(RTC_TimeTypeDef *time) {
ra_rtc_t dt;
ra_rtc_get_time(&dt);
time->DayLightSaving = 0;
time->Hours = dt.hour;
time->Minutes = dt.minute;
time->SecondFraction = 0;
time->Seconds = dt.second;
// time->StoreOperation;
time->SubSeconds = 0;
time->TimeFormat = 0;
}
void rtc_get_date(RTC_DateTypeDef *date) {
ra_rtc_t dt;
ra_rtc_get_time(&dt);
date->Date = dt.date;
date->Month = dt.month;
date->WeekDay = dt.weekday;
date->Year = (uint8_t)(dt.year - 2000);
}
void rtc_init_start(bool force_init) {
/* Configure RTC prescaler and RTC data registers */
#if (MICROPY_HW_RTC_SOURCE == 1)
// clock source is LOCO
ra_rtc_init(1);
#else
// clock source is subclock
ra_rtc_init(0);
#endif
rtc_need_init_finalise = false;
if (!force_init) {
// So far, this case (force_init == false) is not called.
rtc_info |= 0x40000;
// or rtc_info |= 0x80000;
return;
}
rtc_startup_tick = HAL_GetTick();
rtc_info = 0x3f000000 | (rtc_startup_tick & 0xffffff);
rtc_need_init_finalise = true;
}
void rtc_init_finalise(void) {
if (!rtc_need_init_finalise) {
return;
}
rtc_info = 0x20000000;
rtc_info |= (HAL_GetTick() - rtc_startup_tick) & 0xffff;
rtc_calendar_config();
rtc_need_init_finalise = false;
}
uint64_t mp_hal_time_ns(void) {
uint64_t ns = 0;
#if MICROPY_HW_ENABLE_RTC
// Get current according to the RTC.
rtc_init_finalise();
RTC_TimeTypeDef time;
RTC_DateTypeDef date;
rtc_get_time(&time);
rtc_get_date(&date);
ns = timeutils_seconds_since_epoch(2000 + date.Year, date.Month, date.Date, time.Hours, time.Minutes, time.Seconds);
ns *= 1000000000ULL;
#endif
return ns;
}
/******************************************************************************/
// MicroPython bindings
typedef struct _machine_rtc_obj_t {
mp_obj_base_t base;
} machine_rtc_obj_t;
static const machine_rtc_obj_t machine_rtc_obj = {{&machine_rtc_type}};
/// \classmethod \constructor()
/// Create an RTC object.
static mp_obj_t machine_rtc_make_new(const mp_obj_type_t *type, size_t n_args, size_t n_kw, const mp_obj_t *args) {
// check arguments
mp_arg_check_num(n_args, n_kw, 0, 0, false);
// return constant object
return MP_OBJ_FROM_PTR(&machine_rtc_obj);
}
// force rtc to re-initialise
mp_obj_t machine_rtc_init(mp_obj_t self_in) {
rtc_init_start(true);
rtc_init_finalise();
return mp_const_none;
}
MP_DEFINE_CONST_FUN_OBJ_1(machine_rtc_init_obj, machine_rtc_init);
/// \method info()
/// Get information about the startup time and reset source.
///
/// - The lower 0xffff are the number of milliseconds the RTC took to
/// start up.
/// - Bit 0x10000 is set if a power-on reset occurred.
/// - Bit 0x20000 is set if an external reset occurred
mp_obj_t machine_rtc_info(mp_obj_t self_in) {
return mp_obj_new_int(rtc_info);
}
MP_DEFINE_CONST_FUN_OBJ_1(machine_rtc_info_obj, machine_rtc_info);
/// \method datetime([datetimetuple])
/// Get or set the date and time of the RTC.
///
/// With no arguments, this method returns an 8-tuple with the current
/// date and time. With 1 argument (being an 8-tuple) it sets the date
/// and time.
///
/// The 8-tuple has the following format:
///
/// (year, month, day, weekday, hours, minutes, seconds, subseconds)
///
/// `weekday` is 1-7 for Monday through Sunday.
///
/// `subseconds` counts down from 255 to 0
#define MEG_DIV_64 (1000000 / 64)
#define MEG_DIV_SCALE ((RTC_SYNCH_PREDIV + 1) / 64)
#if defined(MICROPY_HW_RTC_USE_US) && MICROPY_HW_RTC_USE_US
uint32_t rtc_subsec_to_us(uint32_t ss) {
return ((RTC_SYNCH_PREDIV - ss) * MEG_DIV_64) / MEG_DIV_SCALE;
}
uint32_t rtc_us_to_subsec(uint32_t us) {
return RTC_SYNCH_PREDIV - (us * MEG_DIV_SCALE / MEG_DIV_64);
}
#else
#define rtc_us_to_subsec
#define rtc_subsec_to_us
#endif
mp_obj_t machine_rtc_datetime(size_t n_args, const mp_obj_t *args) {
rtc_init_finalise();
if (n_args == 1) {
ra_rtc_t time;
ra_rtc_get_time(&time);
mp_obj_t tuple[8] = {
mp_obj_new_int(time.year),
mp_obj_new_int(time.month),
mp_obj_new_int(time.date),
mp_obj_new_int(time.weekday),
mp_obj_new_int(time.hour),
mp_obj_new_int(time.minute),
mp_obj_new_int(time.second),
mp_obj_new_int(0),
};
return mp_obj_new_tuple(8, tuple);
} else {
// set date and time
mp_obj_t *items;
mp_obj_get_array_fixed_n(args[1], 8, &items);
ra_rtc_t tm;
tm.year = mp_obj_get_int(items[0]);
tm.month = mp_obj_get_int(items[1]);
tm.date = mp_obj_get_int(items[2]);
tm.weekday = mp_obj_get_int(items[3]);
tm.hour = mp_obj_get_int(items[4]);
tm.minute = mp_obj_get_int(items[5]);
tm.second = mp_obj_get_int(items[6]);
ra_rtc_set_time(&tm);
return mp_const_none;
}
}
MP_DEFINE_CONST_FUN_OBJ_VAR_BETWEEN(machine_rtc_datetime_obj, 1, 2, machine_rtc_datetime);
// wakeup(None)
// wakeup(ms, callback=None) - ms should be between 4ms - 2000ms
// wakeup(wucksel, wut, callback) - not implemented
mp_obj_t machine_rtc_wakeup(size_t n_args, const mp_obj_t *args) {
bool enable = false;
mp_int_t ms;
mp_obj_t callback = mp_const_none;
uint32_t period = 0;
if (args[1] == mp_const_none) {
// disable wakeup
} else {
// time given in ms
ms = mp_obj_get_int(args[1]);
if (ms <= 4) {
period = 6;
} else if (ms <= 8) {
period = 7;
} else if (ms <= 16) {
period = 8;
} else if (ms <= 32) {
period = 9;
} else if (ms <= 63) {
period = 10;
} else if (ms <= 125) {
period = 11;
} else if (ms <= 250) {
period = 12;
} else if (ms <= 500) {
period = 13;
} else if (ms <= 1000) {
period = 14;
} else if (ms <= 2000) {
period = 15;
}
enable = true;
}
if (n_args >= 2) {
callback = args[2];
}
// set the callback
MP_STATE_PORT(pyb_extint_callback)[EXTI_RTC_WAKEUP] = callback;
pyb_extint_callback_arg[EXTI_RTC_WAKEUP] = MP_OBJ_NEW_SMALL_INT(EXTI_RTC_WAKEUP);
rtc_wakeup_param = EXTI_RTC_WAKEUP;
if (enable) {
if (callback != mp_const_none) {
ra_rtc_set_period_func((void *)extint_callback, (void *)&rtc_wakeup_param);
} else {
ra_rtc_set_period_func((void *)NULL, (void *)NULL);
}
ra_rtc_set_period_time(period);
ra_rtc_period_on();
} else {
ra_rtc_period_off();
}
return mp_const_none;
}
MP_DEFINE_CONST_FUN_OBJ_VAR_BETWEEN(machine_rtc_wakeup_obj, 2, 3, machine_rtc_wakeup);
// calibration(None)
// calibration(cal)
// When an integer argument is provided, check that it falls in the range [-63(s) to 63(s)]
// and set the calibration value; otherwise return calibration value
mp_obj_t machine_rtc_calibration(size_t n_args, const mp_obj_t *args) {
rtc_init_finalise();
mp_int_t cal;
if (n_args == 2) {
cal = mp_obj_get_int(args[1]);
if (cal < -63 || cal > 63) {
mp_raise_ValueError(MP_ERROR_TEXT("calibration value out of range"));
} else {
ra_rtc_set_adjustment(cal, 0); // calibration for second
}
return mp_const_none;
} else {
// get calibration register
cal = (mp_int_t)ra_rtc_get_adjustment();
return mp_obj_new_int(cal);
}
}
MP_DEFINE_CONST_FUN_OBJ_VAR_BETWEEN(machine_rtc_calibration_obj, 1, 2, machine_rtc_calibration);
static const mp_rom_map_elem_t machine_rtc_locals_dict_table[] = {
{ MP_ROM_QSTR(MP_QSTR_init), MP_ROM_PTR(&machine_rtc_init_obj) },
{ MP_ROM_QSTR(MP_QSTR_info), MP_ROM_PTR(&machine_rtc_info_obj) },
{ MP_ROM_QSTR(MP_QSTR_datetime), MP_ROM_PTR(&machine_rtc_datetime_obj) },
{ MP_ROM_QSTR(MP_QSTR_wakeup), MP_ROM_PTR(&machine_rtc_wakeup_obj) },
{ MP_ROM_QSTR(MP_QSTR_calibration), MP_ROM_PTR(&machine_rtc_calibration_obj) },
};
static MP_DEFINE_CONST_DICT(machine_rtc_locals_dict, machine_rtc_locals_dict_table);
MP_DEFINE_CONST_OBJ_TYPE(
machine_rtc_type,
MP_QSTR_RTC,
MP_TYPE_FLAG_NONE,
make_new, machine_rtc_make_new,
locals_dict, &machine_rtc_locals_dict
);