]> granicus.if.org Git - esp-idf/blob - components/freertos/include/freertos/portable.h
Merge branch 'feature/add_espnow' into 'master'
[esp-idf] / components / freertos / include / freertos / portable.h
1 /*
2     FreeRTOS V8.2.0 - Copyright (C) 2015 Real Time Engineers Ltd.
3     All rights reserved
4
5     VISIT http://www.FreeRTOS.org TO ENSURE YOU ARE USING THE LATEST VERSION.
6
7     This file is part of the FreeRTOS distribution.
8
9     FreeRTOS is free software; you can redistribute it and/or modify it under
10     the terms of the GNU General Public License (version 2) as published by the
11     Free Software Foundation >>!AND MODIFIED BY!<< the FreeRTOS exception.
12
13         ***************************************************************************
14     >>!   NOTE: The modification to the GPL is included to allow you to     !<<
15     >>!   distribute a combined work that includes FreeRTOS without being   !<<
16     >>!   obliged to provide the source code for proprietary components     !<<
17     >>!   outside of the FreeRTOS kernel.                                   !<<
18         ***************************************************************************
19
20     FreeRTOS is distributed in the hope that it will be useful, but WITHOUT ANY
21     WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
22     FOR A PARTICULAR PURPOSE.  Full license text is available on the following
23     link: http://www.freertos.org/a00114.html
24
25     ***************************************************************************
26      *                                                                       *
27      *    FreeRTOS provides completely free yet professionally developed,    *
28      *    robust, strictly quality controlled, supported, and cross          *
29      *    platform software that is more than just the market leader, it     *
30      *    is the industry's de facto standard.                               *
31      *                                                                       *
32      *    Help yourself get started quickly while simultaneously helping     *
33      *    to support the FreeRTOS project by purchasing a FreeRTOS           *
34      *    tutorial book, reference manual, or both:                          *
35      *    http://www.FreeRTOS.org/Documentation                              *
36      *                                                                       *
37     ***************************************************************************
38
39     http://www.FreeRTOS.org/FAQHelp.html - Having a problem?  Start by reading
40         the FAQ page "My application does not run, what could be wrong?".  Have you
41         defined configASSERT()?
42
43         http://www.FreeRTOS.org/support - In return for receiving this top quality
44         embedded software for free we request you assist our global community by
45         participating in the support forum.
46
47         http://www.FreeRTOS.org/training - Investing in training allows your team to
48         be as productive as possible as early as possible.  Now you can receive
49         FreeRTOS training directly from Richard Barry, CEO of Real Time Engineers
50         Ltd, and the world's leading authority on the world's leading RTOS.
51
52     http://www.FreeRTOS.org/plus - A selection of FreeRTOS ecosystem products,
53     including FreeRTOS+Trace - an indispensable productivity tool, a DOS
54     compatible FAT file system, and our tiny thread aware UDP/IP stack.
55
56     http://www.FreeRTOS.org/labs - Where new FreeRTOS products go to incubate.
57     Come and try FreeRTOS+TCP, our new open source TCP/IP stack for FreeRTOS.
58
59     http://www.OpenRTOS.com - Real Time Engineers ltd. license FreeRTOS to High
60     Integrity Systems ltd. to sell under the OpenRTOS brand.  Low cost OpenRTOS
61     licenses offer ticketed support, indemnification and commercial middleware.
62
63     http://www.SafeRTOS.com - High Integrity Systems also provide a safety
64     engineered and independently SIL3 certified version for use in safety and
65     mission critical applications that require provable dependability.
66
67     1 tab == 4 spaces!
68 */
69
70 /*-----------------------------------------------------------
71  * Portable layer API.  Each function must be defined for each port.
72  *----------------------------------------------------------*/
73
74 #ifndef PORTABLE_H
75 #define PORTABLE_H
76
77 /* Each FreeRTOS port has a unique portmacro.h header file.  Originally a
78 pre-processor definition was used to ensure the pre-processor found the correct
79 portmacro.h file for the port being used.  That scheme was deprecated in favour
80 of setting the compiler's include path such that it found the correct
81 portmacro.h file - removing the need for the constant and allowing the
82 portmacro.h file to be located anywhere in relation to the port being used.
83 Purely for reasons of backward compatibility the old method is still valid, but
84 to make it clear that new projects should not use it, support for the port
85 specific constants has been moved into the deprecated_definitions.h header
86 file. */
87 #include "deprecated_definitions.h"
88
89 /* If portENTER_CRITICAL is not defined then including deprecated_definitions.h
90 did not result in a portmacro.h header file being included - and it should be
91 included here.  In this case the path to the correct portmacro.h header file
92 must be set in the compiler's include path. */
93 #ifndef portENTER_CRITICAL
94         #include "portmacro.h"
95 #endif
96
97 #if portBYTE_ALIGNMENT == 8
98         #define portBYTE_ALIGNMENT_MASK ( 0x0007U )
99 #endif
100
101 #if portBYTE_ALIGNMENT == 4
102         #define portBYTE_ALIGNMENT_MASK ( 0x0003 )
103 #endif
104
105 #if portBYTE_ALIGNMENT == 2
106         #define portBYTE_ALIGNMENT_MASK ( 0x0001 )
107 #endif
108
109 #if portBYTE_ALIGNMENT == 1
110         #define portBYTE_ALIGNMENT_MASK ( 0x0000 )
111 #endif
112
113 #ifndef portBYTE_ALIGNMENT_MASK
114         #error "Invalid portBYTE_ALIGNMENT definition"
115 #endif
116
117 #ifndef portNUM_CONFIGURABLE_REGIONS
118         #define portNUM_CONFIGURABLE_REGIONS 1
119 #endif
120
121 #ifdef __cplusplus
122 extern "C" {
123 #endif
124
125 #include "mpu_wrappers.h"
126 #include "esp_system.h"
127
128 /*
129  * Setup the stack of a new task so it is ready to be placed under the
130  * scheduler control.  The registers have to be placed on the stack in
131  * the order that the port expects to find them.
132  *
133  */
134 #if( portUSING_MPU_WRAPPERS == 1 )
135         StackType_t *pxPortInitialiseStack( StackType_t *pxTopOfStack, TaskFunction_t pxCode, void *pvParameters, BaseType_t xRunPrivileged ) PRIVILEGED_FUNCTION;
136 #else
137         StackType_t *pxPortInitialiseStack( StackType_t *pxTopOfStack, TaskFunction_t pxCode, void *pvParameters ) PRIVILEGED_FUNCTION;
138 #endif
139
140 /*
141  * Map to the memory management routines required for the port.
142  *
143  * Note that libc standard malloc/free are also available for
144  * non-FreeRTOS-specific code, and behave the same as
145  * pvPortMalloc()/vPortFree().
146  */
147 #define pvPortMalloc malloc
148 #define vPortFree free
149 #define xPortGetFreeHeapSize esp_get_free_heap_size
150 #define xPortGetMinimumEverFreeHeapSize esp_get_minimum_free_heap_size
151
152 /*
153  * Setup the hardware ready for the scheduler to take control.  This generally
154  * sets up a tick interrupt and sets timers for the correct tick frequency.
155  */
156 BaseType_t xPortStartScheduler( void ) PRIVILEGED_FUNCTION;
157
158 /*
159  * Undo any hardware/ISR setup that was performed by xPortStartScheduler() so
160  * the hardware is left in its original condition after the scheduler stops
161  * executing.
162  */
163 void vPortEndScheduler( void ) PRIVILEGED_FUNCTION;
164
165
166 /*
167  * Send an interrupt to another core in order to make the task running
168  * on it yield for a higher-priority task.
169  */
170
171 void vPortYieldOtherCore( BaseType_t coreid) PRIVILEGED_FUNCTION;
172
173
174 /*
175  Callback to set a watchpoint on the end of the stack. Called every context switch to change the stack
176  watchpoint around.
177  */
178 void vPortSetStackWatchpoint( void* pxStackStart );
179
180 /*
181  * Returns true if the current core is in ISR context; low prio ISR, med prio ISR or timer tick ISR. High prio ISRs
182  * aren't detected here, but they normally cannot call C code, so that should not be an issue anyway.
183  */
184 BaseType_t xPortInIsrContext();
185
186 /*
187  * The structures and methods of manipulating the MPU are contained within the
188  * port layer.
189  *
190  * Fills the xMPUSettings structure with the memory region information
191  * contained in xRegions.
192  */
193 #if( portUSING_MPU_WRAPPERS == 1 )
194         struct xMEMORY_REGION;
195         void vPortStoreTaskMPUSettings( xMPU_SETTINGS *xMPUSettings, const struct xMEMORY_REGION * const xRegions, StackType_t *pxBottomOfStack, uint32_t usStackDepth ) PRIVILEGED_FUNCTION;
196         void vPortReleaseTaskMPUSettings( xMPU_SETTINGS *xMPUSettings );
197 #endif
198
199 /* Multi-core: get current core ID */
200 static inline uint32_t IRAM_ATTR xPortGetCoreID() {
201     int id;
202     asm (
203         "rsr.prid %0\n"
204         " extui %0,%0,13,1"
205         :"=r"(id));
206     return id;
207 }
208
209 /* Get tick rate per second */
210 uint32_t xPortGetTickRateHz(void);
211
212 #ifdef __cplusplus
213 }
214 #endif
215
216 #endif /* PORTABLE_H */
217