]> git.sur5r.net Git - freertos/blob - FreeRTOS/Source/portable/GCC/RISC-V/port.c
Update version number in readiness for V10.2.0 release.
[freertos] / FreeRTOS / Source / portable / GCC / RISC-V / port.c
1 /*\r
2  * FreeRTOS Kernel V10.2.0\r
3  * Copyright (C) 2019 Amazon.com, Inc. or its affiliates.  All Rights Reserved.\r
4  *\r
5  * Permission is hereby granted, free of charge, to any person obtaining a copy of\r
6  * this software and associated documentation files (the "Software"), to deal in\r
7  * the Software without restriction, including without limitation the rights to\r
8  * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\r
9  * the Software, and to permit persons to whom the Software is furnished to do so,\r
10  * subject to the following conditions:\r
11  *\r
12  * The above copyright notice and this permission notice shall be included in all\r
13  * copies or substantial portions of the Software.\r
14  *\r
15  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r
16  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\r
17  * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\r
18  * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\r
19  * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\r
20  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\r
21  *\r
22  * http://www.FreeRTOS.org\r
23  * http://aws.amazon.com/freertos\r
24  *\r
25  * 1 tab == 4 spaces!\r
26  */\r
27 \r
28 /*-----------------------------------------------------------\r
29  * Implementation of functions defined in portable.h for the RISC-V RV32 port.\r
30  *----------------------------------------------------------*/\r
31 \r
32 /* Scheduler includes. */\r
33 #include "FreeRTOS.h"\r
34 #include "task.h"\r
35 #include "portmacro.h"\r
36 \r
37 #ifndef configCLINT_BASE_ADDRESS\r
38         #warning configCLINT_BASE_ADDRESS must be defined in FreeRTOSConfig.h.  If the target chip includes a Core Local Interrupter (CLINT) then set configCLINT_BASE_ADDRESS to the CLINT base address.  Otherwise set configCLINT_BASE_ADDRESS to 0.\r
39 #endif\r
40 \r
41 /* Let the user override the pre-loading of the initial LR with the address of\r
42 prvTaskExitError() in case it messes up unwinding of the stack in the\r
43 debugger. */\r
44 #ifdef configTASK_RETURN_ADDRESS\r
45         #define portTASK_RETURN_ADDRESS configTASK_RETURN_ADDRESS\r
46 #else\r
47         #define portTASK_RETURN_ADDRESS prvTaskExitError\r
48 #endif\r
49 \r
50 /* The stack used by interrupt service routines.  Set configISR_STACK_SIZE_WORDS\r
51 to use a statically allocated array as the interrupt stack.  Alternative leave\r
52 configISR_STACK_SIZE_WORDS undefined and update the linker script so that a\r
53 linker variable names __freertos_irq_stack_top has the same value as the top\r
54 of the stack used by main.  Using the linker script method will repurpose the\r
55 stack that was used by main before the scheduler was started for use as the\r
56 interrupt stack after the scheduler has started. */\r
57 #ifdef configISR_STACK_SIZE_WORDS\r
58         static __attribute__ ((aligned(16))) StackType_t xISRStack[ configISR_STACK_SIZE_WORDS ] = { 0 };\r
59         const StackType_t xISRStackTop = ( StackType_t ) &( xISRStack[ ( configISR_STACK_SIZE_WORDS & ~portBYTE_ALIGNMENT_MASK ) - 1 ] );\r
60 #else\r
61         extern const uint32_t __freertos_irq_stack_top[];\r
62         const StackType_t xISRStackTop = ( StackType_t ) __freertos_irq_stack_top;\r
63 #endif\r
64 \r
65 /*\r
66  * Setup the timer to generate the tick interrupts.  The implementation in this\r
67  * file is weak to allow application writers to change the timer used to\r
68  * generate the tick interrupt.\r
69  */\r
70 void vPortSetupTimerInterrupt( void ) __attribute__(( weak ));\r
71 \r
72 /*-----------------------------------------------------------*/\r
73 \r
74 /* Used to program the machine timer compare register. */\r
75 uint64_t ullNextTime = 0ULL;\r
76 const uint64_t *pullNextTime = &ullNextTime;\r
77 const uint32_t ulTimerIncrementsForOneTick = ( uint32_t ) ( configCPU_CLOCK_HZ / configTICK_RATE_HZ ); /* Assumes increment won't go over 32-bits. */\r
78 volatile uint64_t * const pullMachineTimerCompareRegister = ( volatile uint64_t * const ) ( configCLINT_BASE_ADDRESS + 0x4000 );\r
79 \r
80 /* Set configCHECK_FOR_STACK_OVERFLOW to 3 to add ISR stack checking to task\r
81 stack checking.  A problem in the ISR stack will trigger an assert, not call the\r
82 stack overflow hook function (because the stack overflow hook is specific to a\r
83 task stack, not the ISR stack). */\r
84 #if( configCHECK_FOR_STACK_OVERFLOW > 2 )\r
85         #warning This path not tested, or even compiled yet.\r
86         /* Don't use 0xa5 as the stack fill bytes as that is used by the kernerl for\r
87         the task stacks, and so will legitimately appear in many positions within\r
88         the ISR stack. */\r
89         #define portISR_STACK_FILL_BYTE 0xee\r
90 \r
91         static const uint8_t ucExpectedStackBytes[] = {\r
92                                                                         portISR_STACK_FILL_BYTE, portISR_STACK_FILL_BYTE, portISR_STACK_FILL_BYTE, portISR_STACK_FILL_BYTE,             \\r
93                                                                         portISR_STACK_FILL_BYTE, portISR_STACK_FILL_BYTE, portISR_STACK_FILL_BYTE, portISR_STACK_FILL_BYTE,             \\r
94                                                                         portISR_STACK_FILL_BYTE, portISR_STACK_FILL_BYTE, portISR_STACK_FILL_BYTE, portISR_STACK_FILL_BYTE,             \\r
95                                                                         portISR_STACK_FILL_BYTE, portISR_STACK_FILL_BYTE, portISR_STACK_FILL_BYTE, portISR_STACK_FILL_BYTE,             \\r
96                                                                         portISR_STACK_FILL_BYTE, portISR_STACK_FILL_BYTE, portISR_STACK_FILL_BYTE, portISR_STACK_FILL_BYTE };   \\r
97 \r
98         #define portCHECK_ISR_STACK() configASSERT( ( memcmp( ( void * ) xISRStack, ( void * ) ucExpectedStackBytes, sizeof( ucExpectedStackBytes ) ) == 0 ) )\r
99 #else\r
100         /* Define the function away. */\r
101         #define portCHECK_ISR_STACK()\r
102 #endif /* configCHECK_FOR_STACK_OVERFLOW > 2 */\r
103 \r
104 /*-----------------------------------------------------------*/\r
105 \r
106 #if( configCLINT_BASE_ADDRESS != 0 )\r
107 \r
108         void vPortSetupTimerInterrupt( void )\r
109         {\r
110         uint32_t ulCurrentTimeHigh, ulCurrentTimeLow;\r
111         volatile uint32_t * const pulTimeHigh = ( volatile uint32_t * const ) ( configCLINT_BASE_ADDRESS + 0xBFFC );\r
112         volatile uint32_t * const pulTimeLow = ( volatile uint32_t * const ) ( configCLINT_BASE_ADDRESS + 0xBFF8 );\r
113 \r
114                 do\r
115                 {\r
116                         ulCurrentTimeHigh = *pulTimeHigh;\r
117                         ulCurrentTimeLow = *pulTimeLow;\r
118                 } while( ulCurrentTimeHigh != *pulTimeHigh );\r
119 \r
120                 ullNextTime = ( uint64_t ) ulCurrentTimeHigh;\r
121                 ullNextTime <<= 32ULL;\r
122                 ullNextTime |= ( uint64_t ) ulCurrentTimeLow;\r
123                 ullNextTime += ( uint64_t ) ulTimerIncrementsForOneTick;\r
124                 *pullMachineTimerCompareRegister = ullNextTime;\r
125 \r
126                 /* Prepare the time to use after the next tick interrupt. */\r
127                 ullNextTime += ( uint64_t ) ulTimerIncrementsForOneTick;\r
128         }\r
129 \r
130 #endif /* ( configCLINT_BASE_ADDRESS != 0 ) */\r
131 /*-----------------------------------------------------------*/\r
132 \r
133 BaseType_t xPortStartScheduler( void )\r
134 {\r
135 extern void xPortStartFirstTask( void );\r
136 \r
137         #if( configASSERT_DEFINED == 1 )\r
138         {\r
139                 volatile uint32_t mtvec = 0;\r
140 \r
141                 /* Check the least significant two bits of mtvec are 00 - indicating\r
142                 single vector mode. */\r
143                 __asm volatile( "csrr %0, mtvec" : "=r"( mtvec ) );\r
144                 configASSERT( ( mtvec & 0x03UL ) == 0 );\r
145 \r
146                 /* Check alignment of the interrupt stack - which is the same as the\r
147                 stack that was being used by main() prior to the scheduler being\r
148                 started. */\r
149                 configASSERT( ( xISRStackTop & portBYTE_ALIGNMENT_MASK ) == 0 );\r
150         }\r
151         #endif /* configASSERT_DEFINED */\r
152 \r
153         /* If there is a CLINT then it is ok to use the default implementation\r
154         in this file, otherwise vPortSetupTimerInterrupt() must be implemented to\r
155         configure whichever clock is to be used to generate the tick interrupt. */\r
156         vPortSetupTimerInterrupt();\r
157 \r
158         #if( configCLINT_BASE_ADDRESS != 0 )\r
159         {\r
160                 /* Enable mtime and external interrupts.  1<<7 for timer interrupt, 1<<11\r
161                 for external interrupt.  _RB_ What happens here when mtime is not present as\r
162                 with pulpino? */\r
163                 __asm volatile( "csrs mie, %0" :: "r"(0x880) );\r
164         }\r
165         #else\r
166         {\r
167                 /* Enable external interrupts. */\r
168                 __asm volatile( "csrs mie, %0" :: "r"(0x800) );\r
169         }\r
170         #endif /* configCLINT_BASE_ADDRESS */\r
171 \r
172         xPortStartFirstTask();\r
173 \r
174         /* Should not get here as after calling xPortStartFirstTask() only tasks\r
175         should be executing. */\r
176         return pdFAIL;\r
177 }\r
178 /*-----------------------------------------------------------*/\r
179 \r
180 void vPortEndScheduler( void )\r
181 {\r
182         /* Not implemented. */\r
183         for( ;; );\r
184 }\r
185 \r
186 \r
187 \r
188 \r
189 \r