-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhal_rtos.h
162 lines (143 loc) · 5.39 KB
/
hal_rtos.h
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
/**
* \file
*
* \brief RTOS HAL API declaration.
*
* Copyright (C) 2015 Atmel Corporation. All rights reserved.
*
* \asf_license_start
*
* \page License
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
*
* 3. The name of Atmel may not be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* 4. This software may only be redistributed and used in connection with an
* Atmel microcontroller product.
*
* THIS SOFTWARE IS PROVIDED BY ATMEL "AS IS" AND ANY EXPRESS OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT ARE
* EXPRESSLY AND SPECIFICALLY DISCLAIMED. IN NO EVENT SHALL ATMEL BE LIABLE FOR
* ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*
* \asf_license_stop
*
*/
#ifndef _HAL_RTOS_H_INCLUDED
#define _HAL_RTOS_H_INCLUDED
#ifdef __cplusplus
extern "C" {
#endif
#ifndef is_in_isr
#include "hpl_core.h"
/* Extern function implemented to check if it's in ISR.
* Can directly check CPU core register, e.g., for cortex-m0p:
* (*(uint32_t*)0xE000ED04 & 0x1ff)
*/
#define is_in_isr() _is_in_isr()
#endif
#include "compiler.h"
#include "rtos_port.h"
#include <utils_assert.h>
/* Semaphore */
#ifdef SEMAPHORE_ENABLED
/**
* \brief Semaphore max count declaration
*/
#define SEMAPHORE_MAX_COUNT 1
/**
* \brief Semaphore initialization
* it used as count Semaphore, The max count
* value is defined by SEMAPHORE_MAX_COUNT
*
* \param[in] sem The pointer to a sem_t instance
* \param[in] count Initializing semaphore number
* it should not exceed the max value which
* is defined by SEMAPHORE_MAX_COUNT
*
* \return The result of initialization
* return ERR_NONE for success
* return <0 for ERR
*/
int32_t sem_init(sem_t *sem, uint32_t count);
/**
* \brief Semaphore up
*
* \param[in] sem The pointer to a sem_t instance
*
* \return The result of up operation
* return ERR_NONE for success
* return <0 for ERR
*/
int32_t sem_up(sem_t *sem);
/**
* \brief Semaphore down, may suspend the caller thread
*
* \param[in] sem The pointer to a sem_t instance
* \param[in] timeout Timeout in ticks
*
* \return The result of down operation
* \retval ERR_NONE for success
* \retval <0 for ERR
*/
int32_t sem_down(sem_t *sem, uint32_t timeout);
/**
* \brief Semaphore deinitialization
*
* \param[in] sem The pointer to a sem_t instance
*
* \return The result of deinitialize semaphore
* \retval ERR_NONE for success
* \retval <0 for ERR
*/
int32_t sem_deinit(sem_t *sem);
#endif
/* os lock */
#if !defined(os_lock) || !defined(os_unlock)
#undef os_lock
#undef os_unlock
#include "hal_atomic.h"
static volatile hal_atomic_t interrupt_flags;
static int lock_nesting;
#define os_lock() \
do { \
if (lock_nesting == 0) { \
atomic_enter_critical(&interrupt_flags); \
} \
\
lock_nesting++; \
} while (0)
#define os_unlock() \
do { \
lock_nesting--; \
\
if (lock_nesting == 0) { \
atomic_leave_critical(&interrupt_flags); \
} \
} while (0)
#endif
/* os sleep */
#if !defined(os_sleep)
#warning "No sleep method is provided by RTOS"
#endif
#ifdef __cplusplus
}
#endif
#endif