Statistics
| Branch: | Tag: | Revision:

amiro-os / core / inc / aos_system.h @ e4379628

History | View | Annotate | Download (8.882 KB)

1
/*
2
AMiRo-OS is an operating system designed for the Autonomous Mini Robot (AMiRo) platform.
3
Copyright (C) 2016..2019  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
/**
20
 * @file    aos_system.h
21
 * @brief   System macros and structures.
22
 *
23
 * @addtogroup aos_system
24
 * @{
25
 */
26

    
27
#ifndef AMIROOS_SYSTEM_H
28
#define AMIROOS_SYSTEM_H
29

    
30
#include <amiroos.h>
31
#include <chprintf.h>
32

    
33
/******************************************************************************/
34
/* CONSTANTS                                                                  */
35
/******************************************************************************/
36

    
37
/**
38
 * @brief   Resolution of the system time measurement.
39
 */
40
#define AOS_SYSTEM_TIME_RESOLUTION              ((MICROSECONDS_PER_SECOND + CH_CFG_ST_FREQUENCY - 1) / CH_CFG_ST_FREQUENCY)
41

    
42
/**
43
 * @brief   System event flag mask for shutdown related events.
44
 */
45
#define AOS_SYSTEM_EVENTFLAGS_SHUTDOWN_MASK     ((eventflags_t)0x1F)
46

    
47
/**
48
 * @brief   System event flag which is emitted when a passive shutdown was initiated.
49
 */
50
#define AOS_SYSTEM_EVENTFLAGS_SHUTDOWN_PASSIVE  ((eventflags_t)(1 << 0))
51

    
52
/**
53
 * @brief   System event flag which is emitted when a shutdown to transportation mode was initiated.
54
 */
55
#define AOS_SYSTEM_EVENTFLAGS_SHUTDOWN_TRANSPORTATION ((eventflags_t)(1 << 1))
56

    
57
/**
58
 * @brief   System event flag which is emitted when a shutdown to deepsleep mode was initiated.
59
 */
60
#define AOS_SYSTEM_EVENTFLAGS_SHUTDOWN_DEEPSLEEP ((eventflags_t)(1 << 2))
61

    
62
/**
63
 * @brief   System event flag which is emitted when a shutdown to hibernate mode was initiated.
64
 */
65
#define AOS_SYSTEM_EVENTFLAGS_SHUTDOWN_HIBERNATE ((eventflags_t)(1 << 3))
66

    
67
/**
68
 * @brief   System event flag which is emitted when a system restart was initiated.
69
 */
70
#define AOS_SYSTEM_EVENTFLAGS_SHUTDOWN_RESTART ((eventflags_t)(1 << 4))
71

    
72
#if (AMIROOS_CFG_SSSP_ENABLE == true) || defined(__DOXYGEN__)
73

    
74
/**
75
 * @brief   Major version of the implemented SSSP.
76
 */
77
#define AOS_SYSTEM_SSSP_VERSION_MAJOR           1
78

    
79
/**
80
 * @brief   Minor version of the implemented SSSP.
81
 */
82
#define AOS_SYSTEM_SSSP_VERSION_MINOR           4
83

    
84
/**
85
 * @brief   Timeout delay according to SSSP.
86
 * @details SSSP defines timeouts to be ten times longer than the signal delay time.
87
 */
88
#define AOS_SYSTEM_SSSP_TIMEOUT                 (10 * AMIROOS_CFG_SSSP_SIGNALDELAY)
89

    
90
#endif /* (AMIROOS_CFG_SSSP_ENABLE == true) */
91

    
92
/******************************************************************************/
93
/* SETTINGS                                                                   */
94
/******************************************************************************/
95

    
96
/******************************************************************************/
97
/* CHECKS                                                                     */
98
/******************************************************************************/
99

    
100
/******************************************************************************/
101
/* DATA STRUCTURES AND TYPES                                                  */
102
/******************************************************************************/
103

    
104
/**
105
 * @brief   Enumerator to identify shutdown types.
106
 */
107
typedef enum aos_shutdown {
108
  AOS_SHUTDOWN_NONE,            /**< Default value if no shutdown action was initiated */
109
  AOS_SHUTDOWN_PASSIVE,         /**< Passive shutdown (initiated by another module). */
110
  AOS_SHUTDOWN_HIBERNATE,       /**< Active shutdown to hibernate mode. */
111
  AOS_SHUTDOWN_DEEPSLEEP,       /**< Active shutdown to deepsleep mode. */
112
  AOS_SHUTDOWN_TRANSPORTATION,  /**< Active shutdown to transportation mode. */
113
  AOS_SHUTDOWN_RESTART,         /**< Active saystem restart request. */
114
} aos_shutdown_t;
115

    
116
#if (AMIROOS_CFG_SSSP_ENABLE == true) || defined(__DOXYGEN__)
117

    
118
/**
119
 * @brief   Enumerator of the several stages of SSSP.
120
 */
121
typedef enum aos_ssspstage {
122
  AOS_SSSP_STARTUP_1_1  = 0x10, /**< Identifier of SSSP startup phase stage 1-1. */
123
  AOS_SSSP_STARTUP_1_2  = 0x11, /**< Identifier of SSSP startup phase stage 1-2. */
124
  AOS_SSSP_STARTUP_1_3  = 0x12, /**< Identifier of SSSP startup phase stage 1-3. */
125
  AOS_SSSP_STARTUP_2_1  = 0x14, /**< Identifier of SSSP startup phase stage 2-1. */
126
  AOS_SSSP_STARTUP_2_2  = 0x15, /**< Identifier of SSSP startup phase stage 2-2. */
127
  AOS_SSSP_STARTUP_3_1  = 0x18, /**< Identifier of SSSP startup phase stage 3-1. */
128
  AOS_SSSP_STARTUP_3_2  = 0x19, /**< Identifier of SSSP startup phase stage 3-2. */
129
  AOS_SSSP_STARTUP_3_3  = 0x1A, /**< Identifier of SSSP startup phase stage 3-3. */
130
  AOS_SSSP_STARTUP_3_4  = 0x1B, /**< Identifier of SSSP startup phase stage 3-4. */
131
  AOS_SSSP_OPERATION    = 0x20, /**< Identifier of SSSP operation pahse. */
132
  AOS_SSSP_SHUTDOWN_1_1 = 0x30, /**< Identifier of SSSP shutdown phase stage 1-1. */
133
  AOS_SSSP_SHUTDOWN_1_2 = 0x31, /**< Identifier of SSSP shutdown phase stage 1-2. */
134
  AOS_SSSP_SHUTDOWN_1_3 = 0x32, /**< Identifier of SSSP shutdown phase stage 1-3. */
135
  AOS_SSSP_SHUTDOWN_2_1 = 0x34, /**< Identifier of SSSP shutdown phase stage 2-1. */
136
  AOS_SSSP_SHUTDOWN_2_2 = 0x35, /**< Identifier of SSSP shutdown phase stage 2-2. */
137
  AOS_SSSP_SHUTDOWN_3   = 0x38, /**< Identifier of SSSP shutdown phase stage 3. */
138
} aos_ssspstage_t;
139

    
140
/**
141
 * @brief   Type to represent module IDs.
142
 */
143
typedef uint16_t aos_ssspmoduleid_t;
144

    
145
#endif /* (AMIROOS_CFG_SSSP_ENABLE == true) */
146

    
147
/**
148
 * @brief   AMiRo-OS base system structure.
149
 */
150
typedef struct aos_system {
151
#if (AMIROOS_CFG_SSSP_ENABLE == true) || defined(__DOXYGEN__)
152
  /**
153
   * @brief   SSSP relevant data.
154
   */
155
  struct {
156
    /**
157
     * @brief   Current SSSP stage of the system.
158
     */
159
    aos_ssspstage_t stage;
160

    
161
    /**
162
     * @brief   Module identifier.
163
     * @details A value of 0 indicates an uninitialized ID.
164
     *          The vlaues 0 and ~0 are reserved und must not be set.
165
     */
166
    aos_ssspmoduleid_t moduleId;
167
  } sssp;
168
#endif /* (AMIROOS_CFG_SSSP_ENABLE == true) */
169

    
170
  /**
171
   * @brief   System I/O stream.
172
   */
173
  AosIOStream iostream;
174

    
175
  /**
176
   * @brief   Event structure.
177
   */
178
  struct {
179

    
180
    /**
181
     * @brief   GPIO event source.
182
     */
183
    event_source_t gpio;
184

    
185
    /**
186
     * @brief   OS event source.
187
     */
188
    event_source_t os;
189
  } events;
190

    
191
#if (AMIROOS_CFG_SHELL_ENABLE == true) || defined(__DOXYGEN__)
192

    
193
  /**
194
   * @brief   Pointer to the shell object.
195
   */
196
  aos_shell_t shell;
197

    
198
#endif /* (AMIROOS_CFG_SHELL_ENABLE == true) */
199

    
200
} aos_system_t;
201

    
202
/******************************************************************************/
203
/* MACROS                                                                     */
204
/******************************************************************************/
205

    
206
/**
207
 * @brief   Printf function that uses the default system I/O stream.
208
 *
209
 * @param[in] fmt   Formatted string to print.
210
 */
211
#define aosprintf(fmt, ...)                     chprintf((BaseSequentialStream*)&aos.iostream, fmt, ##__VA_ARGS__)
212

    
213
/******************************************************************************/
214
/* EXTERN DECLARATIONS                                                        */
215
/******************************************************************************/
216

    
217
/**
218
 * @brief   Global system object.
219
 */
220
extern aos_system_t aos;
221

    
222
#if defined(__cplusplus)
223
extern "C" {
224
#endif /* defined(__cplusplus) */
225
  void aosSysInit(const char* shellPrompt);
226
  void aosSysStart(void);
227
#if (AMIROOS_CFG_SSSP_ENABLE == true) || defined (__DOXYGEN__)
228
  eventmask_t aosSysSsspStartupOsInitSyncCheck(event_listener_t* syncEvtListener);
229
#endif /* (AMIROOS_CFG_SSSP_ENABLE == true) */
230
  void aosSysGetUptimeX(aos_timestamp_t* ut);
231
#if (HAL_USE_RTC == TRUE)
232
  void aosSysGetDateTime(struct tm* dt);
233
  void aosSysSetDateTime(struct tm* dt);
234
#endif /* (HAL_USE_RTC == TRUE) */
235
  void aosSysShutdownInit(aos_shutdown_t shutdown);
236
  void aosSysStop(void);
237
  void aosSysDeinit(void);
238
  void aosSysShutdownFinal(aos_shutdown_t shutdown);
239
  palcallback_t aosSysGetStdGpioCallback(void);
240
#if defined(__cplusplus)
241
}
242
#endif /* defined(__cplusplus) */
243

    
244
/******************************************************************************/
245
/* INLINE FUNCTIONS                                                           */
246
/******************************************************************************/
247

    
248
/**
249
 * @brief   Retrieves the system uptime.
250
 *
251
 * @param[out] ut   Pointer to the system uptime.
252
 */
253
static inline void aosSysGetUptime(aos_timestamp_t* ut)
254
{
255
  chSysLock();
256
  aosSysGetUptimeX(ut);
257
  chSysUnlock();
258
}
259

    
260
#endif /* AMIROOS_SYSTEM_H */
261

    
262
/** @} */