Statistics
| Branch: | Tag: | Revision:

amiro-os / core / src / aos_system.c @ 9ebb11a9

History | View | Annotate | Download (38.368 KB)

1 e545e620 Thomas Schöpping
/*
2
AMiRo-OS is an operating system designed for the Autonomous Mini Robot (AMiRo) platform.
3
Copyright (C) 2016..2018  Thomas Schöpping et al.
4

5
This program is free software: you can redistribute it and/or modify
6
it under the terms of the GNU General Public License as published by
7
the Free Software Foundation, either version 3 of the License, or
8
(at your option) any later version.
9

10
This program is distributed in the hope that it will be useful,
11
but WITHOUT ANY WARRANTY; without even the implied warranty of
12
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
GNU General Public License for more details.
14

15
You should have received a copy of the GNU General Public License
16
along with this program.  If not, see <http://www.gnu.org/licenses/>.
17
*/
18
19 53710ca3 Marc Rothmann
/**
20
 * @file    aos_system.c
21
 * @brief   System code.
22
 * @details Contains system initialization and shutdown routines
23
 *          and system shell commands.
24
 *
25
 * @addtogroup aos_system
26
 * @{
27
 */
28
29 e545e620 Thomas Schöpping
#include <aos_system.h>
30
31
#include <amiroos.h>
32
#include <amiroblt.h>
33 8399aeae Thomas Schöpping
#include <module.h>
34 e545e620 Thomas Schöpping
#include <string.h>
35 8399aeae Thomas Schöpping
#include <stdlib.h>
36 e545e620 Thomas Schöpping
#if (AMIROOS_CFG_TESTS_ENABLE == true)
37
#include <ch_test.h>
38 0128be0f Marc Rothmann
#include <rt_test_root.h>
39 e545e620 Thomas Schöpping
#endif
40
41
/**
42
 * @brief   Period of the system timer.
43
 */
44 1e5f7648 Thomas Schöpping
#define SYSTIMER_PERIOD               (TIME_MAX_SYSTIME - CH_CFG_ST_TIMEDELTA)
45 e545e620 Thomas Schöpping
46
/**
47
 * @brief   Width of the printable system info text.
48
 */
49
#define SYSTEM_INFO_WIDTH             70
50
51 ba516b61 Thomas Schöpping
/**
52
 * @brief   Width of the name column of the system info table.
53
 */
54
#define SYSTEM_INFO_NAMEWIDTH         14
55
56 e545e620 Thomas Schöpping
/* forward declarations */
57
static void _printSystemInfo(BaseSequentialStream* stream);
58
#if (AMIROOS_CFG_SHELL_ENABLE == true)
59
static int _shellcmd_configcb(BaseSequentialStream* stream, int argc, char* argv[]);
60
static int _shellcmd_infocb(BaseSequentialStream* stream, int argc, char* argv[]);
61
static int _shellcmd_shutdowncb(BaseSequentialStream* stream, int argc, char* argv[]);
62
#if (AMIROOS_CFG_TESTS_ENABLE == true)
63
static int _shellcmd_kerneltestcb(BaseSequentialStream* stream, int argc, char* argv[]);
64
#endif /* AMIROOS_CFG_TESTS_ENABLE == true */
65 aed3754b Thomas Schöpping
#endif /* AMIROOS_CFG_SHELL_ENABLE == true */
66 e545e620 Thomas Schöpping
67
/**
68
 * @brief   Timer to accumulate system uptime.
69
 */
70
static virtual_timer_t _systimer;
71
72
/**
73
 * @brief   Accumulated system uptime.
74
 */
75
static aos_timestamp_t _uptime;
76
77
/**
78
 * @brief   Timer register value of last accumulation.
79
 */
80
static systime_t _synctime;
81
82 9ebb11a9 Thomas Schöpping
#if ((AMIROOS_CFG_SSSP_ENABLE == true) && (AMIROOS_CFG_SSSP_MASTER == true)) || defined(__DOXYGEN__)
83 e545e620 Thomas Schöpping
/**
84
 * @brief   Timer to drive the SYS_SYNC signal for system wide time synchronization according to SSSP.
85
 */
86
static virtual_timer_t _syssynctimer;
87
88
/**
89
 * @brief   Last uptime of system wide time synchronization.
90
 */
91
static aos_timestamp_t _syssynctime;
92
#endif
93
94 9ebb11a9 Thomas Schöpping
#if ((AMIROOS_CFG_SSSP_ENABLE == true) && (AMIROOS_CFG_SSSP_MASTER != true) && (AMIROOS_CFG_PROFILE == true)) || defined(__DOXYGEN__)
95 2674917e Thomas Schöpping
/**
96
 * @brief   Offset between local clock and system wide synchronization signal.
97
 */
98 3e1a9c79 Thomas Schöpping
static float _syssyncskew;
99 2674917e Thomas Schöpping
100
/**
101
 * @brief   Weighting factor for the low-pass filter used for calculating the @p _syssyncskew value.
102
 */
103 3e1a9c79 Thomas Schöpping
#define SYSTEM_SYSSYNCSKEW_LPFACTOR   (0.1f / AOS_SYSTEM_TIME_RESOLUTION)
104 9ebb11a9 Thomas Schöpping
#endif /* (AMIROOS_CFG_SSSP_ENABLE == true) && (AMIROOS_CFG_SSSP_MASTER != true) && (AMIROOS_CFG_PROFILE == true) */
105 3e1a9c79 Thomas Schöpping
106 e545e620 Thomas Schöpping
#if (AMIROOS_CFG_SHELL_ENABLE == true) || defined(__DOXYGEN__)
107
/**
108
 * @brief   Shell thread working area.
109
 */
110
THD_WORKING_AREA(_shell_wa, AMIROOS_CFG_SHELL_STACKSIZE);
111
112
/**
113
 * @brief   Shell input buffer.
114
 */
115
static char _shell_line[AMIROOS_CFG_SHELL_LINEWIDTH];
116
117
/**
118
 * @brief   Shell argument buffer.
119
 */
120
static char* _shell_arglist[AMIROOS_CFG_SHELL_MAXARGS];
121
122
/**
123
 * @brief   Shell command to retrieve system information.
124
 */
125
static aos_shellcommand_t _shellcmd_info = {
126
  /* name     */ "module:info",
127
  /* callback */ _shellcmd_infocb,
128
  /* next     */ NULL,
129
};
130
131
/**
132
 * @brief   Shell command to set or retrieve system configuration.
133
 */
134
static aos_shellcommand_t _shellcmd_config = {
135
  /* name     */ "module:config",
136
  /* callback */ _shellcmd_configcb,
137
  /* next     */ NULL,
138
};
139
140
/**
141
 * @brief   Shell command to shutdown the system.
142
 */
143
static aos_shellcommand_t _shellcmd_shutdown = {
144
  /* name     */ "system:shutdown",
145
  /* callback */ _shellcmd_shutdowncb,
146
  /* next     */ NULL,
147
};
148
#endif /* AMIROOS_CFG_SHELL_ENABLE == true */
149
150
#if (AMIROOS_CFG_TESTS_ENABLE == true) || defined(__DOXYGEN__)
151
/**
152
 * @brief   Shell kommand to run a test of the ChibiOS/RT kernel.
153
 */
154
static aos_shellcommand_t _shellcmd_kerneltest = {
155
  /* name     */ "kernel:test",
156
  /* callback */ _shellcmd_kerneltestcb,
157
  /* next     */ NULL,
158
};
159
#endif /* AMIROOS_CFG_TESTS_ENABLE == true */
160
161
/**
162
 * @brief   Global system object.
163
 */
164 6b53f6bf Thomas Schöpping
aos_system_t aos;
165 e545e620 Thomas Schöpping
166
/**
167
 * @brief   Print a separator line.
168
 *
169 ba516b61 Thomas Schöpping
 * @param[in] stream    Stream to print to or NULL to print to all system streams.
170 e545e620 Thomas Schöpping
 * @param[in] c         Character to use.
171
 * @param[in] n         Length of the separator line.
172
 *
173
 * @return  Number of characters printed.
174
 */
175
static unsigned int _printSystemInfoSeparator(BaseSequentialStream* stream, const char c, const unsigned int n)
176
{
177
  aosDbgCheck(stream != NULL);
178
179
  // print the specified character n times
180
  for (unsigned int i = 0; i < n; ++i) {
181
    streamPut(stream, c);
182
  }
183
  streamPut(stream, '\n');
184
185
  return n+1;
186
}
187
188
/**
189
 * @brief   Print a system information line.
190
 * @details Prints a system information line with the following format:
191
 *            "<name>[spaces]fmt"
192
 *          The combined width of "<name>[spaces]" can be specified in order to align <fmt> on multiple lines.
193
 *          Note that there is not trailing newline added implicitely.
194
 *
195 ba516b61 Thomas Schöpping
 * @param[in] stream      Stream to print to or NULL to print to all system streams.
196 e545e620 Thomas Schöpping
 * @param[in] name        Name of the entry/line.
197
 * @param[in] namewidth   Width of the name column.
198
 * @param[in] fmt         Formatted string of information content.
199
 *
200
 * @return  Number of characters printed.
201
 */
202
static unsigned int _printSystemInfoLine(BaseSequentialStream* stream, const char* name, const unsigned int namewidth, const char* fmt, ...)
203
{
204
  aosDbgCheck(stream != NULL);
205 ba516b61 Thomas Schöpping
  aosDbgCheck(name != NULL);
206 e545e620 Thomas Schöpping
207
  unsigned int n = 0;
208 ba516b61 Thomas Schöpping
  va_list ap;
209 e545e620 Thomas Schöpping
210 ba516b61 Thomas Schöpping
  va_start(ap, fmt);
211 e545e620 Thomas Schöpping
  n += chprintf(stream, name);
212
  while (n < namewidth) {
213
    streamPut(stream, ' ');
214
    ++n;
215
  }
216
  n += chvprintf(stream, fmt, ap);
217
  va_end(ap);
218
219 933df08e Thomas Schöpping
  streamPut(stream, '\n');
220
  ++n;
221
222 e545e620 Thomas Schöpping
  return n;
223
}
224
225
/**
226
 * @brief   Prints information about the system.
227
 *
228
 * @param[in] stream    Stream to print to.
229
 */
230 ba516b61 Thomas Schöpping
static void _printSystemInfo(BaseSequentialStream* stream)
231 e545e620 Thomas Schöpping
{
232
  aosDbgCheck(stream != NULL);
233
234 933df08e Thomas Schöpping
  // local variables
235
  struct tm dt;
236
  aosSysGetDateTime(&dt);
237
238
  // print static information about module and operating system
239 e545e620 Thomas Schöpping
  _printSystemInfoSeparator(stream, '=', SYSTEM_INFO_WIDTH);
240 1816cbc6 Thomas Schöpping
#ifdef BOARD_VERSION
241 933df08e Thomas Schöpping
  _printSystemInfoLine(stream, "Module", SYSTEM_INFO_NAMEWIDTH, "%s (v%s)", BOARD_NAME, BOARD_VERSION);
242 1816cbc6 Thomas Schöpping
#else
243
  _printSystemInfoLine(stream, "Module", SYSTEM_INFO_NAMEWIDTH, "%s", BOARD_NAME);
244
#endif
245 e545e620 Thomas Schöpping
#ifdef PLATFORM_NAME
246 933df08e Thomas Schöpping
  _printSystemInfoLine(stream, "Platform", SYSTEM_INFO_NAMEWIDTH, "%s", PLATFORM_NAME);
247 e545e620 Thomas Schöpping
#endif
248
#ifdef PORT_CORE_VARIANT_NAME
249 933df08e Thomas Schöpping
  _printSystemInfoLine(stream, "Core Variant", SYSTEM_INFO_NAMEWIDTH, "%s", PORT_CORE_VARIANT_NAME);
250 e545e620 Thomas Schöpping
#endif
251 933df08e Thomas Schöpping
  _printSystemInfoLine(stream, "Architecture", SYSTEM_INFO_NAMEWIDTH, "%s", PORT_ARCHITECTURE_NAME);
252 e545e620 Thomas Schöpping
  _printSystemInfoSeparator(stream, '-', SYSTEM_INFO_WIDTH);
253 9ebb11a9 Thomas Schöpping
#if (AMIROOS_CFG_SSSP_ENABLE == true)
254 933df08e Thomas Schöpping
  _printSystemInfoLine(stream, "AMiRo-OS" , SYSTEM_INFO_NAMEWIDTH, "%u.%u.%u %s (SSSP %u.%u)", AMIROOS_VERSION_MAJOR, AMIROOS_VERSION_MINOR, AMIROOS_VERSION_PATCH, AMIROOS_RELEASE_TYPE, AOS_SYSTEM_SSSP_VERSION_MAJOR, AOS_SYSTEM_SSSP_VERSION_MINOR);
255 9ebb11a9 Thomas Schöpping
#else
256
  _printSystemInfoLine(stream, "AMiRo-OS" , SYSTEM_INFO_NAMEWIDTH, "%u.%u.%u %s", AMIROOS_VERSION_MAJOR, AMIROOS_VERSION_MINOR, AMIROOS_VERSION_PATCH, AMIROOS_RELEASE_TYPE);
257
#endif
258 933df08e Thomas Schöpping
  _printSystemInfoLine(stream, "AMiRo-LLD" , SYSTEM_INFO_NAMEWIDTH, "%u.%u.%u %s (periphAL %u.%u)", AMIRO_LLD_VERSION_MAJOR, AMIRO_LLD_VERSION_MINOR, AMIRO_LLD_VERSION_PATCH, AMIRO_LLD_RELEASE_TYPE, PERIPHAL_VERSION_MAJOR, PERIPHAL_VERSION_MINOR);
259
  _printSystemInfoLine(stream, "ChibiOS/RT" , SYSTEM_INFO_NAMEWIDTH, "%u.%u.%u %s", CH_KERNEL_MAJOR, CH_KERNEL_MINOR, CH_KERNEL_PATCH, (CH_KERNEL_STABLE == 1) ? "stable" : "non-stable");
260
  _printSystemInfoLine(stream, "ChibiOS/HAL", SYSTEM_INFO_NAMEWIDTH, "%u.%u.%u %s", CH_HAL_MAJOR, CH_HAL_MINOR, CH_HAL_PATCH, (CH_HAL_STABLE == 1) ? "stable" : "non-stable");
261
  _printSystemInfoLine(stream, "build type", SYSTEM_INFO_NAMEWIDTH,"%s", (AMIROOS_CFG_DBG == true) ? "debug" : "release");
262
  _printSystemInfoLine(stream, "Compiler" , SYSTEM_INFO_NAMEWIDTH, "%s %u.%u.%u", "GCC", __GNUC__, __GNUC_MINOR__, __GNUC_PATCHLEVEL__); // TODO: support other compilers than GCC
263
  _printSystemInfoLine(stream, "Compiled" , SYSTEM_INFO_NAMEWIDTH, "%s - %s", __DATE__, __TIME__);
264
265
  // print static information about the bootloader
266 e545e620 Thomas Schöpping
  _printSystemInfoSeparator(stream, '-', SYSTEM_INFO_WIDTH);
267
  if (BL_CALLBACK_TABLE_ADDRESS->magicNumber == BL_MAGIC_NUMBER) {
268 933df08e Thomas Schöpping
    _printSystemInfoLine(stream, "AMiRo-BLT", SYSTEM_INFO_NAMEWIDTH, "%u.%u.%u %s (SSSP %u.%u)", BL_CALLBACK_TABLE_ADDRESS->vBootloader.major, BL_CALLBACK_TABLE_ADDRESS->vBootloader.minor, BL_CALLBACK_TABLE_ADDRESS->vBootloader.patch,
269 e545e620 Thomas Schöpping
                         (BL_CALLBACK_TABLE_ADDRESS->vBootloader.identifier == BL_VERSION_ID_AMiRoBLT_Release) ? "stable" :
270
                         (BL_CALLBACK_TABLE_ADDRESS->vBootloader.identifier == BL_VERSION_ID_AMiRoBLT_ReleaseCandidate) ? "release candidate" :
271
                         (BL_CALLBACK_TABLE_ADDRESS->vBootloader.identifier == BL_VERSION_ID_AMiRoBLT_Beta) ? "beta" :
272
                         (BL_CALLBACK_TABLE_ADDRESS->vBootloader.identifier == BL_VERSION_ID_AMiRoBLT_Alpha) ? "alpha" :
273
                         (BL_CALLBACK_TABLE_ADDRESS->vBootloader.identifier == BL_VERSION_ID_AMiRoBLT_PreAlpha) ? "pre-alpha" :
274
                         "<release type unknown>",
275
                         BL_CALLBACK_TABLE_ADDRESS->vSSSP.major, BL_CALLBACK_TABLE_ADDRESS->vSSSP.minor);
276 9ebb11a9 Thomas Schöpping
#if (AMIROOS_CFG_SSSP_ENABLE == true)
277 933df08e Thomas Schöpping
    if (BL_CALLBACK_TABLE_ADDRESS->vSSSP.major != AOS_SYSTEM_SSSP_VERSION_MAJOR) {
278 ba516b61 Thomas Schöpping
      if (stream) {
279
        chprintf(stream, "WARNING: Bootloader and AMiRo-OS implement incompatible SSSP versions!\n");
280
      } else {
281
        aosprintf("WARNING: Bootloader and AMiRo-OS implement incompatible SSSP versions!\n");
282
      }
283
    }
284 9ebb11a9 Thomas Schöpping
#endif
285 933df08e Thomas Schöpping
    _printSystemInfoLine(stream, "Compiler", SYSTEM_INFO_NAMEWIDTH, "%s %u.%u.%u", (BL_CALLBACK_TABLE_ADDRESS->vCompiler.identifier == BL_VERSION_ID_GCC) ? "GCC" : "<compiler unknown>", BL_CALLBACK_TABLE_ADDRESS->vCompiler.major, BL_CALLBACK_TABLE_ADDRESS->vCompiler.minor, BL_CALLBACK_TABLE_ADDRESS->vCompiler.patch); // TODO: support other compilers than GCC
286 e545e620 Thomas Schöpping
  } else {
287 ba516b61 Thomas Schöpping
    if (stream) {
288
      chprintf(stream, "Bootloader incompatible or not available.\n");
289
    } else {
290
      aosprintf("Bootloader incompatible or not available.\n");
291
    }
292 e545e620 Thomas Schöpping
  }
293 933df08e Thomas Schöpping
294
  // print dynamic information about the module
295 8399aeae Thomas Schöpping
  _printSystemInfoSeparator(stream, '-', SYSTEM_INFO_WIDTH);
296 9ebb11a9 Thomas Schöpping
#if (AMIROOS_CFG_SSSP_ENABLE == true)
297 933df08e Thomas Schöpping
  if (aos.sssp.moduleId != 0) {
298
    _printSystemInfoLine(stream, "Module ID", SYSTEM_INFO_NAMEWIDTH, "%u", aos.sssp.moduleId);
299
  } else {
300
    _printSystemInfoLine(stream, "Module ID", SYSTEM_INFO_NAMEWIDTH, "not available");
301
  }
302 9ebb11a9 Thomas Schöpping
#endif
303 933df08e Thomas Schöpping
  _printSystemInfoLine(stream, "Date", SYSTEM_INFO_NAMEWIDTH, "%s %02u-%02u-%04u", (dt.tm_wday == 0) ? "Sunday" : (dt.tm_wday == 1) ? "Monday" : (dt.tm_wday == 2) ? "Tuesday" : (dt.tm_wday == 3) ? "Wednesday" : (dt.tm_wday == 4) ? "Thursday" : (dt.tm_wday == 5) ? "Friday" : "Saturday",
304 8399aeae Thomas Schöpping
                       dt.tm_mday,
305
                       dt.tm_mon + 1,
306
                       dt.tm_year + 1900);
307 933df08e Thomas Schöpping
  _printSystemInfoLine(stream, "Time", SYSTEM_INFO_NAMEWIDTH, "%02u:%02u:%02u", dt.tm_hour, dt.tm_min, dt.tm_sec);
308
309 e545e620 Thomas Schöpping
  _printSystemInfoSeparator(stream, '=', SYSTEM_INFO_WIDTH);
310
311
  return;
312
}
313
314
#if (AMIROOS_CFG_SHELL_ENABLE == true) || defined(__DOXYGEN__)
315
/**
316
 * @brief   Callback function for the system:config shell command.
317
 *
318
 * @param[in] stream    The I/O stream to use.
319
 * @param[in] argc      Number of arguments.
320
 * @param[in] argv      List of pointers to the arguments.
321
 *
322
 * @return              An exit status.
323
 * @retval  AOS_OK                  The command was executed successfuly.
324
 * @retval  AOS_INVALID_ARGUMENTS   There was an issue with the arguemnts.
325
 */
326
static int _shellcmd_configcb(BaseSequentialStream* stream, int argc, char* argv[])
327
{
328 ba516b61 Thomas Schöpping
  aosDbgCheck(stream != NULL);
329
330 e545e620 Thomas Schöpping
  // local variables
331
  int retval = AOS_INVALID_ARGUMENTS;
332
333
  // if there are additional arguments
334
  if (argc > 1) {
335
    // if the user wants to set or retrieve the shell configuration
336
    if (strcmp(argv[1], "--shell") == 0) {
337
      // if the user wants to modify the shell configuration
338
      if (argc > 2) {
339
        // if the user wants to modify the prompt
340
        if (strcmp(argv[2], "prompt") == 0) {
341
          // there must be a further argument
342
          if (argc > 3) {
343
            // handle the option
344
            if (strcmp(argv[3], "text") == 0) {
345 6b53f6bf Thomas Schöpping
              aos.shell.config &= ~AOS_SHELL_CONFIG_PROMPT_MINIMAL;
346 e545e620 Thomas Schöpping
              retval = AOS_OK;
347
            }
348
            else if (strcmp(argv[3], "minimal") == 0) {
349 6b53f6bf Thomas Schöpping
              aos.shell.config |= AOS_SHELL_CONFIG_PROMPT_MINIMAL;
350 e545e620 Thomas Schöpping
              retval = AOS_OK;
351
            }
352
            else if (strcmp(argv[3], "notime") == 0) {
353 6b53f6bf Thomas Schöpping
              aos.shell.config &= ~(AOS_SHELL_CONFIG_PROMPT_UPTIME | AOS_SHELL_CONFIG_PROMPT_DATETIME);
354 e545e620 Thomas Schöpping
              retval = AOS_OK;
355
            }
356
            else if (strcmp(argv[3], "uptime") == 0) {
357 6b53f6bf Thomas Schöpping
              aos.shell.config &= ~AOS_SHELL_CONFIG_PROMPT_DATETIME;
358
              aos.shell.config |= AOS_SHELL_CONFIG_PROMPT_UPTIME;
359 e545e620 Thomas Schöpping
              retval = AOS_OK;
360
            }
361 8399aeae Thomas Schöpping
            else if (strcmp(argv[3], "date&time") == 0) {
362 6b53f6bf Thomas Schöpping
              aos.shell.config &= ~AOS_SHELL_CONFIG_PROMPT_UPTIME;
363
              aos.shell.config |= AOS_SHELL_CONFIG_PROMPT_DATETIME;
364 8399aeae Thomas Schöpping
              retval = AOS_OK;
365
            }
366
            else {
367
              chprintf(stream, "unknown option '%s'\n", argv[3]);
368
              return AOS_INVALID_ARGUMENTS;
369
            }
370 e545e620 Thomas Schöpping
          }
371
        }
372
        // if the user wants to modify the string matching
373
        else if (strcmp(argv[2], "match") == 0) {
374
          // there must be a further argument
375
          if (argc > 3) {
376
            if (strcmp(argv[3], "casesensitive") == 0) {
377 6b53f6bf Thomas Schöpping
              aos.shell.config |= AOS_SHELL_CONFIG_MATCH_CASE;
378 e545e620 Thomas Schöpping
              retval = AOS_OK;
379
            }
380
            else if (strcmp(argv[3], "caseinsensitive") == 0) {
381 6b53f6bf Thomas Schöpping
              aos.shell.config &= ~AOS_SHELL_CONFIG_MATCH_CASE;
382 e545e620 Thomas Schöpping
              retval = AOS_OK;
383
            }
384
          }
385
        }
386
      }
387
      // if the user wants to retrieve the shell configuration
388
      else {
389
        chprintf(stream, "current shell configuration:\n");
390
        chprintf(stream, "  prompt text:   %s\n",
391 6b53f6bf Thomas Schöpping
                 (aos.shell.prompt != NULL) ? aos.shell.prompt : "n/a");
392 8399aeae Thomas Schöpping
        char time[10];
393 6b53f6bf Thomas Schöpping
        switch (aos.shell.config & (AOS_SHELL_CONFIG_PROMPT_UPTIME | AOS_SHELL_CONFIG_PROMPT_DATETIME)) {
394 8399aeae Thomas Schöpping
          case AOS_SHELL_CONFIG_PROMPT_UPTIME:
395
            strcpy(time, "uptime"); break;
396
          case AOS_SHELL_CONFIG_PROMPT_DATETIME:
397
            strcpy(time, "date&time"); break;
398
          default:
399
            strcpy(time, "no time"); break;
400
        }
401 e545e620 Thomas Schöpping
        chprintf(stream, "  prompt style:  %s, %s\n",
402 6b53f6bf Thomas Schöpping
                 (aos.shell.config & AOS_SHELL_CONFIG_PROMPT_MINIMAL) ? "minimal" : "text",
403 8399aeae Thomas Schöpping
                 time);
404 e545e620 Thomas Schöpping
        chprintf(stream, "  input method:  %s\n",
405 6b53f6bf Thomas Schöpping
                 (aos.shell.config & AOS_SHELL_CONFIG_INPUT_OVERWRITE) ? "replace" : "insert");
406 e545e620 Thomas Schöpping
        chprintf(stream, "  text matching: %s\n",
407 6b53f6bf Thomas Schöpping
                 (aos.shell.config & AOS_SHELL_CONFIG_MATCH_CASE) ? "case sensitive" : "case insensitive");
408 e545e620 Thomas Schöpping
        retval = AOS_OK;
409
      }
410
    }
411 8399aeae Thomas Schöpping
    // if the user wants to configure the date or time
412
    else if (strcmp(argv[1], "--date&time") == 0 && argc == 4) {
413
      struct tm dt;
414
      aosSysGetDateTime(&dt);
415
      unsigned int val = atoi(argv[3]);
416
      if (strcmp(argv[2], "year") == 0) {
417
        dt.tm_year = val - 1900;
418
      }
419
      else if (strcmp(argv[2], "month") == 0 && val <= 12) {
420
        dt.tm_mon = val - 1;
421
      }
422
      else if (strcmp(argv[2], "day") == 0 && val <= 31) {
423
        dt.tm_mday = val;
424
      }
425
      else if (strcmp(argv[2], "hour") == 0 && val < 24) {
426
        dt.tm_hour = val;
427
      }
428
      else if (strcmp(argv[2], "minute") == 0 && val < 60) {
429
        dt.tm_min = val;
430
      }
431
      else if (strcmp(argv[2], "second") == 0 && val < 60) {
432
        dt.tm_sec = val;
433
      }
434
      else {
435
        chprintf(stream, "unknown option '%s' or value '%s'\n", argv[2], argv[3]);
436
        return AOS_INVALID_ARGUMENTS;
437
      }
438
      dt.tm_wday = aosTimeDayOfWeekFromDate(dt.tm_mday, dt.tm_mon+1, dt.tm_year+1900) % 7;
439
      aosSysSetDateTime(&dt);
440
441
      // read and print new date and time
442
      aosSysGetDateTime(&dt);
443
      chprintf(stream, "date/time set to %02u:%02u:%02u @ %02u-%02u-%04u\n",
444
               dt.tm_hour, dt.tm_min, dt.tm_sec,
445
               dt.tm_mday, dt.tm_mon+1, dt.tm_year+1900);
446
447
      retval = AOS_OK;
448
    }
449 e545e620 Thomas Schöpping
  }
450
451
  // print help, if required
452
  if (retval == AOS_INVALID_ARGUMENTS) {
453
    chprintf(stream, "Usage: %s OPTION\n", argv[0]);
454
    chprintf(stream, "Options:\n");
455
    chprintf(stream, "  --help\n");
456
    chprintf(stream, "    Print this help text.\n");
457
    chprintf(stream, "  --shell [OPT [VAL]]\n");
458
    chprintf(stream, "    Set or retrieve shell configuration.\n");
459
    chprintf(stream, "    Possible OPTs and VALs are:\n");
460 8399aeae Thomas Schöpping
    chprintf(stream, "      prompt text|minimal|uptime|date&time|notime\n");
461 e545e620 Thomas Schöpping
    chprintf(stream, "        Configures the prompt.\n");
462
    chprintf(stream, "      match casesensitive|caseinsenitive\n");
463
    chprintf(stream, "        Configures string matching.\n");
464 8399aeae Thomas Schöpping
    chprintf(stream, "  --date&time OPT VAL\n");
465
    chprintf(stream, "    Set the date/time value of OPT to VAL.\n");
466
    chprintf(stream, "    Possible OPTs are:\n");
467
    chprintf(stream, "      year\n");
468
    chprintf(stream, "      month\n");
469
    chprintf(stream, "      day\n");
470
    chprintf(stream, "      hour\n");
471
    chprintf(stream, "      minute\n");
472
    chprintf(stream, "      second\n");
473 e545e620 Thomas Schöpping
  }
474
475
  return (argc > 1 && strcmp(argv[1], "--help") == 0) ? AOS_OK : retval;
476
}
477
478
/**
479
 * @brief   Callback function for the system:info shell command.
480
 *
481
 * @param[in] stream    The I/O stream to use.
482
 * @param[in] argc      Number of arguments.
483
 * @param[in] argv      List of pointers to the arguments.
484
 *
485
 * @return            An exit status.
486
 * @retval  AOS_OK    The command was executed successfully.
487
 */
488
static int _shellcmd_infocb(BaseSequentialStream* stream, int argc, char* argv[])
489
{
490 ba516b61 Thomas Schöpping
  aosDbgCheck(stream != NULL);
491
492 e545e620 Thomas Schöpping
  (void)argc;
493
  (void)argv;
494
495
  // print system information
496
  _printSystemInfo(stream);
497
498
  // print time measurement precision
499 3e1a9c79 Thomas Schöpping
  chprintf(stream, "module time resolution: %uus\n", AOS_SYSTEM_TIME_RESOLUTION);
500 e545e620 Thomas Schöpping
501
  // print system uptime
502
  aos_timestamp_t uptime;
503
  aosSysGetUptime(&uptime);
504
  chprintf(stream, "The system is running for\n");
505
  chprintf(stream, "%10u days\n", (uint32_t)(uptime / MICROSECONDS_PER_DAY));
506
  chprintf(stream, "%10u hours\n", (uint8_t)(uptime % MICROSECONDS_PER_DAY / MICROSECONDS_PER_HOUR));
507
  chprintf(stream, "%10u minutes\n", (uint8_t)(uptime % MICROSECONDS_PER_HOUR / MICROSECONDS_PER_MINUTE));
508
  chprintf(stream, "%10u seconds\n", (uint8_t)(uptime % MICROSECONDS_PER_MINUTE / MICROSECONDS_PER_SECOND));
509
  chprintf(stream, "%10u milliseconds\n", (uint16_t)(uptime % MICROSECONDS_PER_SECOND / MICROSECONDS_PER_MILLISECOND));
510
  chprintf(stream, "%10u microseconds\n", (uint16_t)(uptime % MICROSECONDS_PER_MILLISECOND / MICROSECONDS_PER_MICROSECOND));
511 9ebb11a9 Thomas Schöpping
#if (AMIROOS_CFG_SSSP_ENABLE == true) && (AMIROOS_CFG_SSSP_MASTER != true) && (AMIROOS_CFG_PROFILE == true)
512 3e1a9c79 Thomas Schöpping
  chprintf(stream, "SSSP synchronization offset: %.3fus per %uus\n", _syssyncskew, AMIROOS_CFG_SSSP_SYSSYNCPERIOD);
513 aed3754b Thomas Schöpping
#endif /* AMIROOS_CFG_SSSP_MASTER != true && AMIROOS_CFG_PROFILE == true */
514 3e1a9c79 Thomas Schöpping
  _printSystemInfoSeparator(stream, '=', SYSTEM_INFO_WIDTH);
515 e545e620 Thomas Schöpping
516 aed3754b Thomas Schöpping
#if (AMIROOS_CFG_SHELL_ENABLE == true)
517
  // print shell info
518
  chprintf(stream, "System shell information:\n");
519
  chprintf(stream, "\tnumber of commands:      %u\n", aosShellCountCommands(&aos.shell));
520
  chprintf(stream, "\tmaximum line width:      %u characters\n", aos.shell.linesize);
521
  chprintf(stream, "\tmaximum #arguments:      %u\n", aos.shell.arglistsize);
522
  chprintf(stream, "\tshell thread stack size: %u bytes\n", aosThdGetStacksize(aos.shell.thread));
523
#if (CH_DBG_FILL_THREADS == TRUE)
524
  chprintf(stream, "\tstack peak utilization:  %u bytes (%.2f%%)\n", aosThdGetStackPeakUtilization(aos.shell.thread), (float)aosThdGetStackPeakUtilization(aos.shell.thread) / (float)aosThdGetStacksize(aos.shell.thread) * 100.0f);
525
#endif /* CH_DBG_FILL_THREADS == TRUE */
526
  _printSystemInfoSeparator(stream, '=', SYSTEM_INFO_WIDTH);
527
#endif /* AMIROOS_CFG_SHELL_ENABLE == true */
528
529 e545e620 Thomas Schöpping
  return AOS_OK;
530
}
531
532
/**
533
 * @brief   Callback function for the sytem:shutdown shell command.
534
 *
535
 * @param[in] stream    The I/O stream to use.
536
 * @param[in] argc      Number of arguments.
537
 * @param[in] argv      List of pointers to the arguments.
538
 *
539
 * @return              An exit status.
540
 * @retval  AOS_OK                  The command was executed successfully.
541
 * @retval  AOS_INVALID_ARGUMENTS   There was an issue with the arguments.
542
 */
543
static int _shellcmd_shutdowncb(BaseSequentialStream* stream, int argc, char* argv[])
544
{
545 ba516b61 Thomas Schöpping
  aosDbgCheck(stream != NULL);
546
547 e545e620 Thomas Schöpping
  // print help text
548
  if (argc != 2 || strcmp(argv[1], "--help") == 0) {
549
    chprintf(stream, "Usage: %s OPTION\n", argv[0]);
550
    chprintf(stream, "Options:\n");
551
    chprintf(stream, "  --help\n");
552
    chprintf(stream, "    Print this help text.\n");
553
    chprintf(stream, "  --hibernate, -h\n");
554
    chprintf(stream, "    Shutdown to hibernate mode.\n");
555
    chprintf(stream, "    Least energy saving, but allows charging via pins.\n");
556
    chprintf(stream, "  --deepsleep, -d\n");
557
    chprintf(stream, "    Shutdown to deepsleep mode.\n");
558
    chprintf(stream, "    Minimum energy consumption while allowing charging via plug.\n");
559
    chprintf(stream, "  --transportation, -t\n");
560
    chprintf(stream, "    Shutdown to transportation mode.\n");
561
    chprintf(stream, "    Minimum energy consumption with all interrupts disabled (no charging).\n");
562
    chprintf(stream, "  --restart, -r\n");
563
    chprintf(stream, "    Shutdown and restart system.\n");
564
565
    return (argc != 2) ? AOS_INVALID_ARGUMENTS : AOS_OK;
566
  }
567
  // handle argument
568
  else {
569
    if (strcmp(argv[1], "-h") == 0 || strcmp(argv[1], "--hibernate") == 0) {
570 6b53f6bf Thomas Schöpping
      chEvtBroadcastFlags(&aos.events.os, AOS_SYSTEM_EVENTFLAGS_HIBERNATE);
571 9b5281e9 Thomas Schöpping
      chThdTerminate(chThdGetSelfX());
572 e545e620 Thomas Schöpping
      return AOS_OK;
573
    }
574
    else if (strcmp(argv[1], "-d") == 0 || strcmp(argv[1], "--deepsleep") == 0) {
575 6b53f6bf Thomas Schöpping
      chEvtBroadcastFlags(&aos.events.os, AOS_SYSTEM_EVENTFLAGS_DEEPSLEEP);
576 9b5281e9 Thomas Schöpping
      chThdTerminate(chThdGetSelfX());
577 e545e620 Thomas Schöpping
      return AOS_OK;
578
    }
579
    else if (strcmp(argv[1], "-t") == 0 || strcmp(argv[1], "--transportation") == 0) {
580 6b53f6bf Thomas Schöpping
      chEvtBroadcastFlags(&aos.events.os, AOS_SYSTEM_EVENTFLAGS_TRANSPORTATION);
581 9b5281e9 Thomas Schöpping
      chThdTerminate(chThdGetSelfX());
582 e545e620 Thomas Schöpping
      return AOS_OK;
583
    }
584
    else if (strcmp(argv[1], "-r") == 0 || strcmp(argv[1], "--restart") == 0) {
585 6b53f6bf Thomas Schöpping
      chEvtBroadcastFlags(&aos.events.os, AOS_SYSTEM_EVENTFLAGS_RESTART);
586 9b5281e9 Thomas Schöpping
      chThdTerminate(chThdGetSelfX());
587 e545e620 Thomas Schöpping
      return AOS_OK;
588
    }
589
    else {
590
      chprintf(stream, "unknown argument %s\n", argv[1]);
591
      return AOS_INVALID_ARGUMENTS;
592
    }
593
  }
594
}
595
596
#if (AMIROOS_CFG_TESTS_ENABLE == true) || defined(__DOXYGEN__)
597
/**
598
 * @brief   Callback function for the kernel:test shell command.
599
 *
600
 * @param[in] stream    The I/O stream to use.
601
 * @param[in] argc      Number of arguments.
602
 * @param[in] argv      List of pointers to the arguments.
603
 *
604
 * @return      An exit status.
605
 */
606
static int _shellcmd_kerneltestcb(BaseSequentialStream* stream, int argc, char* argv[])
607
{
608 ba516b61 Thomas Schöpping
  aosDbgCheck(stream != NULL);
609
610 e545e620 Thomas Schöpping
  (void)argc;
611
  (void)argv;
612
613 0128be0f Marc Rothmann
  msg_t retval = test_execute(stream, &rt_test_suite);
614 e545e620 Thomas Schöpping
615
  return retval;
616
}
617
#endif /* AMIROOS_CFG_TESTS_ENABLE == true */
618 aed3754b Thomas Schöpping
#endif /* AMIROOS_CFG_SHELL_ENABLE == true */
619 e545e620 Thomas Schöpping
620
/**
621 1e5f7648 Thomas Schöpping
 * @brief   Generic callback function for GPIO interrupts.
622 e545e620 Thomas Schöpping
 *
623 1e5f7648 Thomas Schöpping
 * @param[in] args   Pointer to the GPIO pad identifier.
624 e545e620 Thomas Schöpping
 */
625 1e5f7648 Thomas Schöpping
static void _intCallback(void* args)
626 e545e620 Thomas Schöpping
{
627 1e5f7648 Thomas Schöpping
  aosDbgCheck((args != NULL) && (*((iopadid_t*)args) < sizeof(eventflags_t) * 8));
628 e545e620 Thomas Schöpping
629
  chSysLockFromISR();
630 1e5f7648 Thomas Schöpping
  chEvtBroadcastFlagsI(&aos.events.io, (eventflags_t)1 << *((iopadid_t*)args));
631 e545e620 Thomas Schöpping
  chSysUnlockFromISR();
632
633
  return;
634
}
635
636 9ebb11a9 Thomas Schöpping
#if ((AMIROOS_CFG_SSSP_ENABLE == true) && (AMIROOS_CFG_SSSP_MASTER != true)) || defined(__DOXYGEN__)
637 e545e620 Thomas Schöpping
/**
638
 * @brief   Callback function for the Sync signal interrupt.
639
 *
640 1e5f7648 Thomas Schöpping
 * @param[in] args   Pointer to the GPIO pad identifier.
641 e545e620 Thomas Schöpping
 */
642 0128be0f Marc Rothmann
static void _signalSyncCallback(void *args)
643 e545e620 Thomas Schöpping
{
644 1e5f7648 Thomas Schöpping
  aosDbgCheck((args != NULL) && (*((iopadid_t*)args) < sizeof(eventflags_t) * 8));
645 e545e620 Thomas Schöpping
646
  apalControlGpioState_t s_state;
647
  aos_timestamp_t uptime;
648
649
  chSysLockFromISR();
650 9461fadc Thomas Schöpping
  // if the system is in operation phase
651
  if (aos.sssp.stage == AOS_SSSP_OPERATION) {
652
    // read signal S
653
    apalControlGpioGet(&moduleSsspGpioSync, &s_state);
654
    // if S was toggled from on to off
655
    if (s_state == APAL_GPIO_OFF) {
656
      // get current uptime
657
      aosSysGetUptimeX(&uptime);
658
      // align the uptime with the synchronization period
659
      if (uptime % AMIROOS_CFG_SSSP_SYSSYNCPERIOD < AMIROOS_CFG_SSSP_SYSSYNCPERIOD / 2) {
660
        _uptime -= uptime % AMIROOS_CFG_SSSP_SYSSYNCPERIOD;
661 3e1a9c79 Thomas Schöpping
#if (AMIROOS_CFG_PROFILE == true)
662
        _syssyncskew = ((1.0f - SYSTEM_SYSSYNCSKEW_LPFACTOR) * _syssyncskew) + (SYSTEM_SYSSYNCSKEW_LPFACTOR * (uptime % AMIROOS_CFG_SSSP_SYSSYNCPERIOD));
663
#endif
664 9461fadc Thomas Schöpping
      } else {
665
        _uptime += AMIROOS_CFG_SSSP_SYSSYNCPERIOD - (uptime % AMIROOS_CFG_SSSP_SYSSYNCPERIOD);
666 3e1a9c79 Thomas Schöpping
#if (AMIROOS_CFG_PROFILE == true)
667
        _syssyncskew = ((1.0f - SYSTEM_SYSSYNCSKEW_LPFACTOR) * _syssyncskew) - (SYSTEM_SYSSYNCSKEW_LPFACTOR * (AMIROOS_CFG_SSSP_SYSSYNCPERIOD - (uptime % AMIROOS_CFG_SSSP_SYSSYNCPERIOD)));
668
#endif
669 9461fadc Thomas Schöpping
      }
670 e545e620 Thomas Schöpping
    }
671
  }
672
  // broadcast event
673 1e5f7648 Thomas Schöpping
  chEvtBroadcastFlagsI(&aos.events.io, (eventflags_t)1 << *((iopadid_t*)args));
674 e545e620 Thomas Schöpping
  chSysUnlockFromISR();
675
676
  return;
677
}
678 9ebb11a9 Thomas Schöpping
#endif /* (AMIROOS_CFG_SSSP_ENABLE == true) && (AMIROOS_CFG_SSSP_MASTER != true) */
679 e545e620 Thomas Schöpping
680
/**
681
 * @brief   Callback function for the uptime accumulation timer.
682
 *
683
 * @param[in] par   Generic parameter.
684
 */
685
static void _uptimeCallback(void* par)
686
{
687
  (void)par;
688
689
  chSysLockFromISR();
690
  // read current time in system ticks
691
  register const systime_t st = chVTGetSystemTimeX();
692
  // update the uptime variables
693 1e5f7648 Thomas Schöpping
  _uptime += chTimeI2US(chTimeDiffX(_synctime, st));
694 e545e620 Thomas Schöpping
  _synctime = st;
695
  // enable the timer again
696
  chVTSetI(&_systimer, SYSTIMER_PERIOD, &_uptimeCallback, NULL);
697
  chSysUnlockFromISR();
698
699
  return;
700
}
701
702 9ebb11a9 Thomas Schöpping
#if ((AMIROOS_CFG_SSSP_ENABLE == true) && (AMIROOS_CFG_SSSP_MASTER == true)) || defined (__DOXYGEN__)
703 e545e620 Thomas Schöpping
/**
704
 * @brief   Periodic system synchronization callback function.
705
 * @details Toggles the SYS_SYNC signal and reconfigures the system synchronization timer.
706
 *
707
 * @param[in] par   Unuesed parameters.
708
 */
709
static void _sysSyncTimerCallback(void* par)
710
{
711
  (void)par;
712
713
  apalControlGpioState_t s_state;
714
  aos_timestamp_t uptime;
715
716
  chSysLockFromISR();
717 9461fadc Thomas Schöpping
  // toggle and read signal S
718
  apalGpioToggle(moduleSsspGpioSync.gpio);
719 6b53f6bf Thomas Schöpping
  apalControlGpioGet(&moduleSsspGpioSync, &s_state);
720 e545e620 Thomas Schöpping
  // if S was toggled from off to on
721
  if (s_state == APAL_GPIO_ON) {
722
    // reconfigure the timer precisely, because the logically falling edge (next interrupt) snychronizes the system time
723
    _syssynctime += AMIROOS_CFG_SSSP_SYSSYNCPERIOD;
724
    aosSysGetUptimeX(&uptime);
725 1e5f7648 Thomas Schöpping
    chVTSetI(&_syssynctimer, chTimeUS2I(_syssynctime - uptime), _sysSyncTimerCallback, NULL);
726 e545e620 Thomas Schöpping
  }
727
  // if S was toggled from on to off
728
  else /* if (s_state == APAL_GPIO_OFF) */ {
729
    // reconfigure the timer (lazy)
730 1e5f7648 Thomas Schöpping
    chVTSetI(&_syssynctimer, chTimeUS2I(AMIROOS_CFG_SSSP_SYSSYNCPERIOD / 2), _sysSyncTimerCallback, NULL);
731 e545e620 Thomas Schöpping
  }
732
  chSysUnlockFromISR();
733
734
  return;
735
}
736 9ebb11a9 Thomas Schöpping
#endif /* (AMIROOS_CFG_SSSP_ENABLE == true) && (AMIROOS_CFG_SSSP_MASTER == true) */
737 e545e620 Thomas Schöpping
738
/**
739
 * @brief   AMiRo-OS system initialization.
740
 * @note    Must be called from the system control thread (usually main thread).
741
 *
742
 * @param[in] shellPrompt   String to be printed as prompt of the system shell.
743
 */
744 6b53f6bf Thomas Schöpping
#if (AMIROOS_CFG_SHELL_ENABLE == true) || defined(__DOXYGEN__)
745
void aosSysInit(const char* shellPrompt)
746
#else
747
void aosSysInit(void)
748
#endif
749 e545e620 Thomas Schöpping
{
750 1e5f7648 Thomas Schöpping
  /* set control thread to maximum priority */
751 512abac1 Thomas Schöpping
  chThdSetPriority(AOS_THD_CTRLPRIO);
752 e545e620 Thomas Schöpping
753 1e5f7648 Thomas Schöpping
  /* set local variables */
754 e545e620 Thomas Schöpping
  chVTObjectInit(&_systimer);
755 9ebb11a9 Thomas Schöpping
#if (AMIROOS_CFG_SSSP_ENABLE == true)
756 e545e620 Thomas Schöpping
  _synctime = 0;
757
  _uptime = 0;
758
#if (AMIROOS_CFG_SSSP_MASTER == true)
759
  chVTObjectInit(&_syssynctimer);
760
  _syssynctime = 0;
761
#endif
762 3e1a9c79 Thomas Schöpping
#if (AMIROOS_CFG_SSSP_MASTER != true) && (AMIROOS_CFG_PROFILE == true)
763
  _syssyncskew = 0.0f;
764
#endif
765 9ebb11a9 Thomas Schöpping
#else /* AMIROOS_CFG_SSSP_ENABLE == false */
766
  // start the uptime counter
767
  chSysLock();
768
  _synctime = chVTGetSystemTimeX();
769
  _uptime = 0;
770
  chVTSetI(&_systimer, SYSTIMER_PERIOD, &_uptimeCallback, NULL);
771
  chSysUnlock();
772
#endif /* AMIROOS_CFG_SSSP_ENABLE */
773 e545e620 Thomas Schöpping
774 1e5f7648 Thomas Schöpping
  /* initialize aos configuration */
775 9ebb11a9 Thomas Schöpping
#if (AMIROOS_CFG_SSSP_ENABLE == true)
776 6b53f6bf Thomas Schöpping
  aos.sssp.stage = AOS_SSSP_STARTUP_2_1;
777
  aos.sssp.moduleId = 0;
778 9ebb11a9 Thomas Schöpping
#endif
779 ba516b61 Thomas Schöpping
  aosIOStreamInit(&aos.iostream);
780 6b53f6bf Thomas Schöpping
  chEvtObjectInit(&aos.events.io);
781
  chEvtObjectInit(&aos.events.os);
782 e545e620 Thomas Schöpping
783 1e5f7648 Thomas Schöpping
  /* interrupt setup */
784 9ebb11a9 Thomas Schöpping
#if (AMIROOS_CFG_SSSP_ENABLE == true)
785 1e5f7648 Thomas Schöpping
  // PD signal
786
  palSetPadCallback(moduleSsspGpioPd.gpio->port, moduleSsspGpioPd.gpio->pad, _intCallback, &moduleSsspGpioPd.gpio->pad);
787
  palEnablePadEvent(moduleSsspGpioPd.gpio->port, moduleSsspGpioPd.gpio->pad, APAL2CH_EDGE(moduleSsspGpioPd.meta.edge));
788
  // SYNC signal
789
#if (AMIROOS_CFG_SSSP_MASTER == true)
790
  palSetPadCallback(moduleSsspGpioSync.gpio->port, moduleSsspGpioSync.gpio->pad, _intCallback, &moduleSsspGpioSync.gpio->pad);
791
#else
792
  palSetPadCallback(moduleSsspGpioSync.gpio->port, moduleSsspGpioSync.gpio->pad, _signalSyncCallback, &moduleSsspGpioSync.gpio->pad);
793
#endif
794
  palEnablePadEvent(moduleSsspGpioSync.gpio->port, moduleSsspGpioSync.gpio->pad, APAL2CH_EDGE(moduleSsspGpioSync.meta.edge));
795
#if (AMIROOS_CFG_SSSP_STACK_START != true)
796
  // DN signal
797
  palSetPadCallback(moduleSsspGpioDn.gpio->port, moduleSsspGpioDn.gpio->pad, _intCallback, &moduleSsspGpioDn.gpio->pad);
798
  palEnablePadEvent(moduleSsspGpioDn.gpio->port, moduleSsspGpioDn.gpio->pad, APAL2CH_EDGE(moduleSsspGpioDn.meta.edge));
799
#endif
800
#if (AMIROOS_CFG_SSSP_STACK_END != true)
801
  // UP signal
802
  palSetPadCallback(moduleSsspGpioUp.gpio->port, moduleSsspGpioUp.gpio->pad, _intCallback, &moduleSsspGpioUp.gpio->pad);
803
  palEnablePadEvent(moduleSsspGpioUp.gpio->port, moduleSsspGpioUp.gpio->pad, APAL2CH_EDGE(moduleSsspGpioUp.meta.edge));
804
#endif
805 9ebb11a9 Thomas Schöpping
#endif /* AMIROOS_CFG_SSSP_ENABLE == true */
806 1e5f7648 Thomas Schöpping
#ifdef MODULE_INIT_INTERRUPTS
807
  // further interrupt signals
808
  MODULE_INIT_INTERRUPTS();
809
#endif
810 e545e620 Thomas Schöpping
811
#if (AMIROOS_CFG_SHELL_ENABLE == true)
812 1e5f7648 Thomas Schöpping
  /* init shell */
813 6b53f6bf Thomas Schöpping
  aosShellInit(&aos.shell,
814
               &aos.events.os,
815 e545e620 Thomas Schöpping
               shellPrompt,
816
               _shell_line,
817
               AMIROOS_CFG_SHELL_LINEWIDTH,
818
               _shell_arglist,
819
               AMIROOS_CFG_SHELL_MAXARGS);
820
  // add system commands
821 6b53f6bf Thomas Schöpping
  aosShellAddCommand(&aos.shell, &_shellcmd_config);
822
  aosShellAddCommand(&aos.shell, &_shellcmd_info);
823
  aosShellAddCommand(&aos.shell, &_shellcmd_shutdown);
824 e545e620 Thomas Schöpping
#if (AMIROOS_CFG_TESTS_ENABLE == true)
825 6b53f6bf Thomas Schöpping
  aosShellAddCommand(&aos.shell, &_shellcmd_kerneltest);
826 e545e620 Thomas Schöpping
#endif
827 9ebb11a9 Thomas Schöpping
#endif /* AMIROOS_CFG_SHELL_ENABLE == true */
828 e545e620 Thomas Schöpping
829
  return;
830
}
831
832
/**
833
 * @brief   Starts the system and all system threads.
834
 */
835
inline void aosSysStart(void)
836
{
837 9ebb11a9 Thomas Schöpping
#if (AMIROOS_CFG_SSSP_ENABLE == true)
838 e545e620 Thomas Schöpping
  // update the system SSSP stage
839 6b53f6bf Thomas Schöpping
  aos.sssp.stage = AOS_SSSP_OPERATION;
840 e545e620 Thomas Schöpping
841 9461fadc Thomas Schöpping
#if (AMIROOS_CFG_SSSP_MASTER == true)
842
  {
843
    chSysLock();
844
    // start the system synchronization counter
845
    // The first iteration of the timer is set to the next 'center' of a 'slice'.
846
    aos_timestamp_t t;
847
    aosSysGetUptimeX(&t);
848
    t = AMIROOS_CFG_SSSP_SYSSYNCPERIOD - (t % AMIROOS_CFG_SSSP_SYSSYNCPERIOD);
849 1e5f7648 Thomas Schöpping
    chVTSetI(&_syssynctimer, chTimeUS2I((t > (AMIROOS_CFG_SSSP_SYSSYNCPERIOD / 2)) ? (t - (AMIROOS_CFG_SSSP_SYSSYNCPERIOD / 2)) : (t + (AMIROOS_CFG_SSSP_SYSSYNCPERIOD / 2))), _sysSyncTimerCallback, NULL);
850 9461fadc Thomas Schöpping
    chSysUnlock();
851
  }
852
#endif
853 9ebb11a9 Thomas Schöpping
#endif /* AMIROOS_CFG_SSSP_ENABLE == true */
854 9461fadc Thomas Schöpping
855 ba516b61 Thomas Schöpping
  // print system information;
856
  _printSystemInfo((BaseSequentialStream*)&aos.iostream);
857 e545e620 Thomas Schöpping
  aosprintf("\n");
858
859
#if (AMIROOS_CFG_SHELL_ENABLE == true)
860
  // start system shell thread
861 0a89baf2 Thomas Schöpping
#if (CH_CFG_USE_THREADHIERARCHY == TRUE)
862
  aos.shell.thread = chThdCreateStatic(_shell_wa, sizeof(_shell_wa), AMIROOS_CFG_SHELL_THREADPRIO, aosShellThread, &aos.shell, &ch.mainthread);
863
#else
864 6b53f6bf Thomas Schöpping
  aos.shell.thread = chThdCreateStatic(_shell_wa, sizeof(_shell_wa), AMIROOS_CFG_SHELL_THREADPRIO, aosShellThread, &aos.shell);
865 e545e620 Thomas Schöpping
#endif
866 0a89baf2 Thomas Schöpping
#endif
867 e545e620 Thomas Schöpping
868
  return;
869
}
870
871 9ebb11a9 Thomas Schöpping
#if (AMIROOS_CFG_SSSP_ENABLE == true) || defined(__DOXYGEN__)
872 e545e620 Thomas Schöpping
/**
873
 * @brief   Implements the SSSP startup synchronization step.
874
 *
875
 * @param[in] syncEvtListener   Event listener that receives the Sync event.
876
 *
877
 * @return    If another event that the listener is interested in was received, its mask is returned.
878
 *            Otherwise an empty mask (0) is returned.
879
 */
880
eventmask_t aosSysSsspStartupOsInitSyncCheck(event_listener_t* syncEvtListener)
881
{
882
  aosDbgCheck(syncEvtListener != NULL);
883
884
  // local variables
885
  eventmask_t m;
886
  eventflags_t f;
887
  apalControlGpioState_t s;
888
889
  // update the system SSSP stage
890 6b53f6bf Thomas Schöpping
  aos.sssp.stage = AOS_SSSP_STARTUP_2_2;
891 e545e620 Thomas Schöpping
892
  // deactivate the sync signal to indicate that the module is ready (SSSPv1 stage 2.1 of startup phase)
893 6b53f6bf Thomas Schöpping
  apalControlGpioSet(&moduleSsspGpioSync, APAL_GPIO_OFF);
894 e545e620 Thomas Schöpping
895
  // wait for any event to occur (do not apply any filter in order not to miss any event)
896
  m = chEvtWaitOne(ALL_EVENTS);
897
  f = chEvtGetAndClearFlags(syncEvtListener);
898 6b53f6bf Thomas Schöpping
  apalControlGpioGet(&moduleSsspGpioSync, &s);
899 e545e620 Thomas Schöpping
900
  // if the event was a system event,
901
  //   and it was fired because of the SysSync control signal,
902
  //   and the SysSync control signal has been deactivated
903
  if (m & syncEvtListener->events &&
904 6b53f6bf Thomas Schöpping
      f == MODULE_SSSP_EVENTFLAGS_SYNC &&
905 e545e620 Thomas Schöpping
      s == APAL_GPIO_OFF) {
906
    chSysLock();
907
    // start the uptime counter
908
    _synctime = chVTGetSystemTimeX();
909
    _uptime = 0;
910
    chVTSetI(&_systimer, SYSTIMER_PERIOD, &_uptimeCallback, NULL);
911
    chSysUnlock();
912
913
    return 0;
914
  }
915
  // an unexpected event occurred
916
  else {
917
    // reassign the flags to the event and return the event mask
918
    syncEvtListener->flags |= f;
919
    return m;
920
  }
921
}
922 9ebb11a9 Thomas Schöpping
#endif /* AMIROOS_CFG_SSSP_ENABLE == true */
923 e545e620 Thomas Schöpping
924
/**
925
 * @brief   Retrieves the system uptime.
926
 *
927
 * @param[out] ut   The system uptime.
928
 */
929
inline void aosSysGetUptimeX(aos_timestamp_t* ut)
930
{
931
  aosDbgCheck(ut != NULL);
932
933 1e5f7648 Thomas Schöpping
  *ut = _uptime + chTimeI2US(chTimeDiffX(_synctime, chVTGetSystemTimeX()));
934 e545e620 Thomas Schöpping
935
  return;
936
}
937
938
/**
939 8399aeae Thomas Schöpping
 * @brief   retrieves the date and time from the MCU clock.
940
 *
941
 * @param[out] td   The date and time.
942
 */
943
void aosSysGetDateTime(struct tm* dt)
944
{
945
  aosDbgCheck(dt != NULL);
946
947
  RTCDateTime rtc;
948
  rtcGetTime(&MODULE_HAL_RTC, &rtc);
949
  rtcConvertDateTimeToStructTm(&rtc, dt, NULL);
950
951
  return;
952
}
953
954
/**
955
 * @brief   set the date and time of the MCU clock.
956
 *
957
 * @param[in] dt    The date and time to set.
958
 */
959
void aosSysSetDateTime(struct tm* dt)
960
{
961
  aosDbgCheck(dt != NULL);
962
963
  RTCDateTime rtc;
964
  rtcConvertStructTmToDateTime(dt, 0, &rtc);
965
  rtcSetTime(&MODULE_HAL_RTC, &rtc);
966
967
  return;
968
}
969
970
/**
971 e545e620 Thomas Schöpping
 * @brief   Initializes/Acknowledges a system shutdown/restart request.
972
 * @note    This functions should be called from the thread with highest priority.
973
 *
974
 * @param[in] shutdown    Type of shutdown.
975
 */
976
void aosSysShutdownInit(aos_shutdown_t shutdown)
977
{
978
  // check arguments
979
  aosDbgCheck(shutdown != AOS_SHUTDOWN_NONE);
980
981 9ebb11a9 Thomas Schöpping
#if (AMIROOS_CFG_SSSP_ENABLE == true)
982 e545e620 Thomas Schöpping
#if (AMIROOS_CFG_SSSP_MASTER == true)
983
  // deactivate the system synchronization timer
984
  chVTReset(&_syssynctimer);
985
#endif
986
987
  // update the system SSSP stage
988 6b53f6bf Thomas Schöpping
  aos.sssp.stage = AOS_SSSP_SHUTDOWN_1_1;
989 e545e620 Thomas Schöpping
990
  // activate the SYS_PD control signal only, if this module initiated the shutdown
991
  chSysLock();
992
  if (shutdown != AOS_SHUTDOWN_PASSIVE) {
993 6b53f6bf Thomas Schöpping
    apalControlGpioSet(&moduleSsspGpioPd, APAL_GPIO_ON);
994 e545e620 Thomas Schöpping
  }
995
  // activate the SYS_SYNC signal
996 6b53f6bf Thomas Schöpping
  apalControlGpioSet(&moduleSsspGpioSync, APAL_GPIO_ON);
997 e545e620 Thomas Schöpping
  chSysUnlock();
998 9ebb11a9 Thomas Schöpping
#endif /* AMIROOS_CFG_SSSP_ENABLE == true */
999 e545e620 Thomas Schöpping
1000
  switch (shutdown) {
1001
    case AOS_SHUTDOWN_PASSIVE:
1002 6b53f6bf Thomas Schöpping
      chEvtBroadcastFlags(&aos.events.os, AOS_SYSTEM_EVENTFLAGS_SHUTDOWN);
1003 e545e620 Thomas Schöpping
      aosprintf("shutdown request received...\n");
1004
      break;
1005
    case AOS_SHUTDOWN_HIBERNATE:
1006 6b53f6bf Thomas Schöpping
      chEvtBroadcastFlags(&aos.events.os, AOS_SYSTEM_EVENTFLAGS_HIBERNATE);
1007 e545e620 Thomas Schöpping
      aosprintf("shutdown to hibernate mode...\n");
1008
      break;
1009
    case AOS_SHUTDOWN_DEEPSLEEP:
1010 6b53f6bf Thomas Schöpping
      chEvtBroadcastFlags(&aos.events.os, AOS_SYSTEM_EVENTFLAGS_DEEPSLEEP);
1011 e545e620 Thomas Schöpping
      aosprintf("shutdown to deepsleep mode...\n");
1012
      break;
1013
    case AOS_SHUTDOWN_TRANSPORTATION:
1014 6b53f6bf Thomas Schöpping
      chEvtBroadcastFlags(&aos.events.os, AOS_SYSTEM_EVENTFLAGS_TRANSPORTATION);
1015 e545e620 Thomas Schöpping
      aosprintf("shutdown to transportation mode...\n");
1016
      break;
1017
    case AOS_SHUTDOWN_RESTART:
1018 6b53f6bf Thomas Schöpping
      chEvtBroadcastFlags(&aos.events.os, AOS_SYSTEM_EVENTFLAGS_RESTART);
1019 e545e620 Thomas Schöpping
      aosprintf("restarting system...\n");
1020
      break;
1021
   // must never occur
1022
   case AOS_SHUTDOWN_NONE:
1023
   default:
1024
      break;
1025
  }
1026
1027 9ebb11a9 Thomas Schöpping
#if (AMIROOS_CFG_SSSP_ENABLE == true)
1028 e545e620 Thomas Schöpping
  // update the system SSSP stage
1029 6b53f6bf Thomas Schöpping
  aos.sssp.stage = AOS_SSSP_SHUTDOWN_1_2;
1030 9ebb11a9 Thomas Schöpping
#endif
1031 e545e620 Thomas Schöpping
1032
  return;
1033
}
1034
1035
/**
1036
 * @brief   Stops the system and all related threads (not the thread this function is called from).
1037
 */
1038
void aosSysStop(void)
1039
{
1040
#if (AMIROOS_CFG_SHELL_ENABLE == true)
1041 6b53f6bf Thomas Schöpping
  chThdWait(aos.shell.thread);
1042 e545e620 Thomas Schöpping
#endif
1043
1044
  return;
1045
}
1046
1047
/**
1048
 * @brief   Deinitialize all system variables.
1049
 */
1050
void aosSysDeinit(void)
1051
{
1052
  return;
1053
}
1054
1055
/**
1056
 * @brief   Finally shuts down the system and calls the bootloader callback function.
1057
 * @note    This function should be called from the thtead with highest priority.
1058
 *
1059
 * @param[in] shutdown    Type of shutdown.
1060
 */
1061 1e5f7648 Thomas Schöpping
void aosSysShutdownFinal(aos_shutdown_t shutdown)
1062 e545e620 Thomas Schöpping
{
1063
  // check arguments
1064
  aosDbgCheck(shutdown != AOS_SHUTDOWN_NONE);
1065
1066 1e5f7648 Thomas Schöpping
  // disable all interrupts
1067
  irqDeinit();
1068 e545e620 Thomas Schöpping
1069 9ebb11a9 Thomas Schöpping
#if (AMIROOS_CFG_SSSP_ENABLE == true)
1070 e545e620 Thomas Schöpping
  // update the system SSSP stage
1071 6b53f6bf Thomas Schöpping
  aos.sssp.stage = AOS_SSSP_SHUTDOWN_1_3;
1072 9ebb11a9 Thomas Schöpping
#endif
1073 e545e620 Thomas Schöpping
1074
  // call bootloader callback depending on arguments
1075
  switch (shutdown) {
1076
    case AOS_SHUTDOWN_PASSIVE:
1077
      BL_CALLBACK_TABLE_ADDRESS->cbHandleShutdownRequest();
1078
      break;
1079
    case AOS_SHUTDOWN_HIBERNATE:
1080
      BL_CALLBACK_TABLE_ADDRESS->cbShutdownHibernate();
1081
      break;
1082
    case AOS_SHUTDOWN_DEEPSLEEP:
1083
      BL_CALLBACK_TABLE_ADDRESS->cbShutdownDeepsleep();
1084
      break;
1085
    case AOS_SHUTDOWN_TRANSPORTATION:
1086
      BL_CALLBACK_TABLE_ADDRESS->cbShutdownTransportation();
1087
      break;
1088
    case AOS_SHUTDOWN_RESTART:
1089
      BL_CALLBACK_TABLE_ADDRESS->cbShutdownRestart();
1090
      break;
1091
    // must never occur
1092
    case AOS_SHUTDOWN_NONE:
1093
    default:
1094
      break;
1095
  }
1096
1097
  return;
1098
}
1099 53710ca3 Marc Rothmann
1100
/** @} */