]> git.sur5r.net Git - freertos/blob - FreeRTOS/Source/portable/IAR/RISC-V/portASM.s
c4082c7b3c49e6f07d8c47d5c5a576b9538602b0
[freertos] / FreeRTOS / Source / portable / IAR / RISC-V / portASM.s
1 /*\r
2  * FreeRTOS Kernel V10.2.1\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  * The FreeRTOS kernel's RISC-V port is split between the the code that is\r
30  * common across all currently supported RISC-V chips (implementations of the\r
31  * RISC-V ISA), and code which tailors the port to a specific RISC-V chip:\r
32  *\r
33  * + The code that is common to all RISC-V chips is implemented in\r
34  *   FreeRTOS\Source\portable\GCC\RISC-V-RV32\portASM.S.  There is only one\r
35  *   portASM.S file because the same file is used no matter which RISC-V chip is\r
36  *   in use.\r
37  *\r
38  * + The code that tailors the kernel's RISC-V port to a specific RISC-V\r
39  *   chip is implemented in freertos_risc_v_chip_specific_extensions.h.  There\r
40  *   is one freertos_risc_v_chip_specific_extensions.h that can be used with any\r
41  *   RISC-V chip that both includes a standard CLINT and does not add to the\r
42  *   base set of RISC-V registers.  There are additional\r
43  *   freertos_risc_v_chip_specific_extensions.h files for RISC-V implementations\r
44  *   that do not include a standard CLINT or do add to the base set of RISC-V\r
45  *   registers.\r
46  *\r
47  * CARE MUST BE TAKEN TO INCLDUE THE CORRECT\r
48  * freertos_risc_v_chip_specific_extensions.h HEADER FILE FOR THE CHIP\r
49  * IN USE.  To include the correct freertos_risc_v_chip_specific_extensions.h\r
50  * header file ensure the path to the correct header file is in the assembler's\r
51  * include path.\r
52  *\r
53  * This freertos_risc_v_chip_specific_extensions.h is for use on RISC-V chips\r
54  * that include a standard CLINT and do not add to the base set of RISC-V\r
55  * registers.\r
56  *\r
57  */\r
58 #if __riscv_xlen == 64\r
59         #define portWORD_SIZE 8\r
60         #define store_x sd\r
61         #define load_x ld\r
62 #elif __riscv_xlen == 32\r
63         #define store_x sw\r
64         #define load_x lw\r
65         #define portWORD_SIZE 4\r
66 #else\r
67         #error Assembler did not define __riscv_xlen\r
68 #endif\r
69 \r
70 #include "freertos_risc_v_chip_specific_extensions.h"\r
71 \r
72 /* Check the freertos_risc_v_chip_specific_extensions.h and/or command line\r
73 definitions. */\r
74 #ifndef portasmHAS_CLINT\r
75         #error freertos_risc_v_chip_specific_extensions.h must define portasmHAS_CLINT to either 1 (CLINT present) or 0 (clint not present).\r
76 #endif\r
77 \r
78 #ifndef portasmHANDLE_INTERRUPT\r
79         #error portasmHANDLE_INTERRUPT must be defined to the function to be called to handle external/peripheral interrupts.  portasmHANDLE_INTERRUPT can be defined on the assmbler command line or in the appropriate freertos_risc_v_chip_specific_extensions.h header file.\r
80 #endif\r
81 \r
82 /* CSR definitions. */\r
83 #define CSR_MSTATUS             0x300\r
84 #define CSR_MTVEC                       0x305\r
85 #define CSR_MEPC            0x341\r
86 #define CSR_MCAUSE          0x342\r
87 \r
88 \r
89 /* Only the standard core registers are stored by default.  Any additional\r
90 registers must be saved by the portasmSAVE_ADDITIONAL_REGISTERS and\r
91 portasmRESTORE_ADDITIONAL_REGISTERS macros - which can be defined in a chip\r
92 specific version of freertos_risc_v_chip_specific_extensions.h.  See the notes\r
93 at the top of this file. */\r
94 #define portCONTEXT_SIZE ( 30 * portWORD_SIZE )\r
95 \r
96         PUBLIC xPortStartFirstTask\r
97         PUBLIC freertos_risc_v_trap_handler\r
98         PUBLIC pxPortInitialiseStack\r
99         EXTERN pxCurrentTCB\r
100         EXTERN ulPortTrapHandler\r
101         EXTERN vTaskSwitchContext\r
102         EXTERN Timer_IRQHandler\r
103         EXTERN pullMachineTimerCompareRegister\r
104         EXTERN pullNextTime\r
105         EXTERN uxTimerIncrementsForOneTick /* size_t type so 32-bit on 32-bit core and 64-bits on 64-bit core. */\r
106         EXTERN xISRStackTop\r
107         EXTERN xTaskIncrementTick\r
108         EXTERN portasmHANDLE_INTERRUPT\r
109 \r
110 /*-----------------------------------------------------------*/\r
111 \r
112         SECTION `.text`:CODE:NOROOT(2)\r
113         CODE\r
114 \r
115 freertos_risc_v_trap_handler:\r
116         addi sp, sp, -portCONTEXT_SIZE\r
117         store_x x1, 1 * portWORD_SIZE( sp )\r
118         store_x x5, 2 * portWORD_SIZE( sp )\r
119         store_x x6, 3 * portWORD_SIZE( sp )\r
120         store_x x7, 4 * portWORD_SIZE( sp )\r
121         store_x x8, 5 * portWORD_SIZE( sp )\r
122         store_x x9, 6 * portWORD_SIZE( sp )\r
123         store_x x10, 7 * portWORD_SIZE( sp )\r
124         store_x x11, 8 * portWORD_SIZE( sp )\r
125         store_x x12, 9 * portWORD_SIZE( sp )\r
126         store_x x13, 10 * portWORD_SIZE( sp )\r
127         store_x x14, 11 * portWORD_SIZE( sp )\r
128         store_x x15, 12 * portWORD_SIZE( sp )\r
129         store_x x16, 13 * portWORD_SIZE( sp )\r
130         store_x x17, 14 * portWORD_SIZE( sp )\r
131         store_x x18, 15 * portWORD_SIZE( sp )\r
132         store_x x19, 16 * portWORD_SIZE( sp )\r
133         store_x x20, 17 * portWORD_SIZE( sp )\r
134         store_x x21, 18 * portWORD_SIZE( sp )\r
135         store_x x22, 19 * portWORD_SIZE( sp )\r
136         store_x x23, 20 * portWORD_SIZE( sp )\r
137         store_x x24, 21 * portWORD_SIZE( sp )\r
138         store_x x25, 22 * portWORD_SIZE( sp )\r
139         store_x x26, 23 * portWORD_SIZE( sp )\r
140         store_x x27, 24 * portWORD_SIZE( sp )\r
141         store_x x28, 25 * portWORD_SIZE( sp )\r
142         store_x x29, 26 * portWORD_SIZE( sp )\r
143         store_x x30, 27 * portWORD_SIZE( sp )\r
144         store_x x31, 28 * portWORD_SIZE( sp )\r
145 \r
146         csrr t0, CSR_MSTATUS                                    /* Required for MPIE bit. */\r
147         store_x t0, 29 * portWORD_SIZE( sp )\r
148 \r
149         portasmSAVE_ADDITIONAL_REGISTERS        /* Defined in freertos_risc_v_chip_specific_extensions.h to save any registers unique to the RISC-V implementation. */\r
150 \r
151         load_x  t0, pxCurrentTCB                        /* Load pxCurrentTCB. */\r
152         store_x  sp, 0( t0 )                            /* Write sp to first TCB member. */\r
153 \r
154         csrr a0, CSR_MCAUSE\r
155         csrr a1, CSR_MEPC\r
156 \r
157 test_if_asynchronous:\r
158         srli a2, a0, __riscv_xlen - 1           /* MSB of mcause is 1 if handing an asynchronous interrupt - shift to LSB to clear other bits. */\r
159         beq a2, x0, handle_synchronous          /* Branch past interrupt handing if not asynchronous. */\r
160         store_x a1, 0( sp )                                     /* Asynch so save unmodified exception return address. */\r
161 \r
162 handle_asynchronous:\r
163 \r
164 #if( portasmHAS_CLINT != 0 )\r
165 \r
166         test_if_mtimer:                                         /* If there is a CLINT then the mtimer is used to generate the tick interrupt. */\r
167 \r
168                 addi t0, x0, 1\r
169 \r
170                 slli t0, t0, __riscv_xlen - 1   /* LSB is already set, shift into MSB.  Shift 31 on 32-bit or 63 on 64-bit cores. */\r
171                 addi t1, t0, 7                                  /* 0x8000[]0007 == machine timer interrupt. */\r
172                 bne a0, t1, test_if_external_interrupt\r
173 \r
174                 load_x t0, pullMachineTimerCompareRegister  /* Load address of compare register into t0. */\r
175                 load_x t1, pullNextTime                 /* Load the address of ullNextTime into t1. */\r
176 \r
177                 #if( __riscv_xlen == 32 )\r
178 \r
179                         /* Update the 64-bit mtimer compare match value in two 32-bit writes. */\r
180                         li t4, -1\r
181                         lw t2, 0(t1)                            /* Load the low word of ullNextTime into t2. */\r
182                         lw t3, 4(t1)                            /* Load the high word of ullNextTime into t3. */\r
183                         sw t4, 0(t0)                            /* Low word no smaller than old value to start with - will be overwritten below. */\r
184                         sw t3, 4(t0)                            /* Store high word of ullNextTime into compare register.  No smaller than new value. */\r
185                         sw t2, 0(t0)                            /* Store low word of ullNextTime into compare register. */\r
186                         lw t0, uxTimerIncrementsForOneTick      /* Load the value of ullTimerIncrementForOneTick into t0 (could this be optimized by storing in an array next to pullNextTime?). */\r
187                         add t4, t0, t2                          /* Add the low word of ullNextTime to the timer increments for one tick (assumes timer increment for one tick fits in 32-bits). */\r
188                         sltu t5, t4, t2                         /* See if the sum of low words overflowed (what about the zero case?). */\r
189                         add t6, t3, t5                          /* Add overflow to high word of ullNextTime. */\r
190                         sw t4, 0(t1)                            /* Store new low word of ullNextTime. */\r
191                         sw t6, 4(t1)                            /* Store new high word of ullNextTime. */\r
192 \r
193                 #endif /* __riscv_xlen == 32 */\r
194 \r
195                 #if( __riscv_xlen == 64 )\r
196 \r
197                         /* Update the 64-bit mtimer compare match value. */\r
198                         ld t2, 0(t1)                            /* Load ullNextTime into t2. */\r
199                         sd t2, 0(t0)                            /* Store ullNextTime into compare register. */\r
200                         ld t0, uxTimerIncrementsForOneTick  /* Load the value of ullTimerIncrementForOneTick into t0 (could this be optimized by storing in an array next to pullNextTime?). */\r
201                         add t4, t0, t2                          /* Add ullNextTime to the timer increments for one tick. */\r
202                         sd t4, 0(t1)                            /* Store ullNextTime. */\r
203 \r
204                 #endif /* __riscv_xlen == 64 */\r
205 \r
206                 load_x sp, xISRStackTop                 /* Switch to ISR stack before function call. */\r
207                 jal xTaskIncrementTick\r
208                 beqz a0, processed_source               /* Don't switch context if incrementing tick didn't unblock a task. */\r
209                 jal vTaskSwitchContext\r
210                 j processed_source\r
211 \r
212         test_if_external_interrupt:                     /* If there is a CLINT and the mtimer interrupt is not pending then check to see if an external interrupt is pending. */\r
213                 addi t1, t1, 4                                  /* 0x80000007 + 4 = 0x8000000b == Machine external interrupt. */\r
214                 bne a0, t1, as_yet_unhandled    /* Something as yet unhandled. */\r
215 \r
216 #endif /* portasmHAS_CLINT */\r
217 \r
218         load_x sp, xISRStackTop                         /* Switch to ISR stack before function call. */\r
219         jal portasmHANDLE_INTERRUPT                     /* Jump to the interrupt handler if there is no CLINT or if there is a CLINT and it has been determined that an external interrupt is pending. */\r
220         j processed_source\r
221 \r
222 handle_synchronous:\r
223         addi a1, a1, 4                                          /* Synchronous so updated exception return address to the instruction after the instruction that generated the exeption. */\r
224         store_x a1, 0( sp )                                     /* Save updated exception return address. */\r
225 \r
226 test_if_environment_call:\r
227         li t0, 11                                                       /* 11 == environment call. */\r
228         bne a0, t0, is_exception                        /* Not an M environment call, so some other exception. */\r
229         load_x sp, xISRStackTop                         /* Switch to ISR stack before function call. */\r
230         jal vTaskSwitchContext\r
231         j processed_source\r
232 \r
233 is_exception:\r
234         ebreak\r
235         j is_exception\r
236 \r
237 as_yet_unhandled:\r
238         ebreak\r
239         j as_yet_unhandled\r
240 \r
241 processed_source:\r
242         load_x  t1, pxCurrentTCB                        /* Load pxCurrentTCB. */\r
243         load_x  sp, 0( t1 )                                     /* Read sp from first TCB member. */\r
244 \r
245         /* Load mret with the address of the next instruction in the task to run next. */\r
246         load_x t0, 0( sp )\r
247         csrw CSR_MEPC, t0\r
248 \r
249         portasmRESTORE_ADDITIONAL_REGISTERS     /* Defined in freertos_risc_v_chip_specific_extensions.h to restore any registers unique to the RISC-V implementation. */\r
250 \r
251         /* Load mstatus with the interrupt enable bits used by the task. */\r
252         load_x  t0, 29 * portWORD_SIZE( sp )\r
253         csrw CSR_MSTATUS, t0                                            /* Required for MPIE bit. */\r
254 \r
255         load_x  x1, 1 * portWORD_SIZE( sp )\r
256         load_x  x5, 2 * portWORD_SIZE( sp )             /* t0 */\r
257         load_x  x6, 3 * portWORD_SIZE( sp )             /* t1 */\r
258         load_x  x7, 4 * portWORD_SIZE( sp )             /* t2 */\r
259         load_x  x8, 5 * portWORD_SIZE( sp )             /* s0/fp */\r
260         load_x  x9, 6 * portWORD_SIZE( sp )             /* s1 */\r
261         load_x  x10, 7 * portWORD_SIZE( sp )    /* a0 */\r
262         load_x  x11, 8 * portWORD_SIZE( sp )    /* a1 */\r
263         load_x  x12, 9 * portWORD_SIZE( sp )    /* a2 */\r
264         load_x  x13, 10 * portWORD_SIZE( sp )   /* a3 */\r
265         load_x  x14, 11 * portWORD_SIZE( sp )   /* a4 */\r
266         load_x  x15, 12 * portWORD_SIZE( sp )   /* a5 */\r
267         load_x  x16, 13 * portWORD_SIZE( sp )   /* a6 */\r
268         load_x  x17, 14 * portWORD_SIZE( sp )   /* a7 */\r
269         load_x  x18, 15 * portWORD_SIZE( sp )   /* s2 */\r
270         load_x  x19, 16 * portWORD_SIZE( sp )   /* s3 */\r
271         load_x  x20, 17 * portWORD_SIZE( sp )   /* s4 */\r
272         load_x  x21, 18 * portWORD_SIZE( sp )   /* s5 */\r
273         load_x  x22, 19 * portWORD_SIZE( sp )   /* s6 */\r
274         load_x  x23, 20 * portWORD_SIZE( sp )   /* s7 */\r
275         load_x  x24, 21 * portWORD_SIZE( sp )   /* s8 */\r
276         load_x  x25, 22 * portWORD_SIZE( sp )   /* s9 */\r
277         load_x  x26, 23 * portWORD_SIZE( sp )   /* s10 */\r
278         load_x  x27, 24 * portWORD_SIZE( sp )   /* s11 */\r
279         load_x  x28, 25 * portWORD_SIZE( sp )   /* t3 */\r
280         load_x  x29, 26 * portWORD_SIZE( sp )   /* t4 */\r
281         load_x  x30, 27 * portWORD_SIZE( sp )   /* t5 */\r
282         load_x  x31, 28 * portWORD_SIZE( sp )   /* t6 */\r
283         addi sp, sp, portCONTEXT_SIZE\r
284 \r
285         mret\r
286 \r
287 /*-----------------------------------------------------------*/\r
288 \r
289 xPortStartFirstTask:\r
290 \r
291 #if( portasmHAS_CLINT != 0 )\r
292         /* If there is a clint then interrupts can branch directly to the FreeRTOS\r
293         trap handler.  Otherwise the interrupt controller will need to be configured\r
294         outside of this file. */\r
295         la t0, freertos_risc_v_trap_handler\r
296         csrw CSR_MTVEC, t0\r
297 #endif /* portasmHAS_CLILNT */\r
298 \r
299         load_x  sp, pxCurrentTCB                        /* Load pxCurrentTCB. */\r
300         load_x  sp, 0( sp )                                     /* Read sp from first TCB member. */\r
301 \r
302         load_x  x1, 0( sp ) /* Note for starting the scheduler the exception return address is used as the function return address. */\r
303 \r
304         portasmRESTORE_ADDITIONAL_REGISTERS     /* Defined in freertos_risc_v_chip_specific_extensions.h to restore any registers unique to the RISC-V implementation. */\r
305 \r
306         load_x  t0, 29 * portWORD_SIZE( sp )    /* mstatus */\r
307         addi t0, t0, 0x08                                               /* Set MIE bit so the first task starts with interrupts enabled - required as returns with ret not eret. */\r
308         csrrw  x0, CSR_MSTATUS, t0                                      /* Interrupts enabled from here! */\r
309 \r
310         load_x  x5, 2 * portWORD_SIZE( sp )             /* t0 */\r
311         load_x  x6, 3 * portWORD_SIZE( sp )             /* t1 */\r
312         load_x  x7, 4 * portWORD_SIZE( sp )             /* t2 */\r
313         load_x  x8, 5 * portWORD_SIZE( sp )             /* s0/fp */\r
314         load_x  x9, 6 * portWORD_SIZE( sp )             /* s1 */\r
315         load_x  x10, 7 * portWORD_SIZE( sp )    /* a0 */\r
316         load_x  x11, 8 * portWORD_SIZE( sp )    /* a1 */\r
317         load_x  x12, 9 * portWORD_SIZE( sp )    /* a2 */\r
318         load_x  x13, 10 * portWORD_SIZE( sp )   /* a3 */\r
319         load_x  x14, 11 * portWORD_SIZE( sp )   /* a4 */\r
320         load_x  x15, 12 * portWORD_SIZE( sp )   /* a5 */\r
321         load_x  x16, 13 * portWORD_SIZE( sp )   /* a6 */\r
322         load_x  x17, 14 * portWORD_SIZE( sp )   /* a7 */\r
323         load_x  x18, 15 * portWORD_SIZE( sp )   /* s2 */\r
324         load_x  x19, 16 * portWORD_SIZE( sp )   /* s3 */\r
325         load_x  x20, 17 * portWORD_SIZE( sp )   /* s4 */\r
326         load_x  x21, 18 * portWORD_SIZE( sp )   /* s5 */\r
327         load_x  x22, 19 * portWORD_SIZE( sp )   /* s6 */\r
328         load_x  x23, 20 * portWORD_SIZE( sp )   /* s7 */\r
329         load_x  x24, 21 * portWORD_SIZE( sp )   /* s8 */\r
330         load_x  x25, 22 * portWORD_SIZE( sp )   /* s9 */\r
331         load_x  x26, 23 * portWORD_SIZE( sp )   /* s10 */\r
332         load_x  x27, 24 * portWORD_SIZE( sp )   /* s11 */\r
333         load_x  x28, 25 * portWORD_SIZE( sp )   /* t3 */\r
334         load_x  x29, 26 * portWORD_SIZE( sp )   /* t4 */\r
335         load_x  x30, 27 * portWORD_SIZE( sp )   /* t5 */\r
336         load_x  x31, 28 * portWORD_SIZE( sp )   /* t6 */\r
337         addi    sp, sp, portCONTEXT_SIZE\r
338         ret\r
339 \r
340 /*-----------------------------------------------------------*/\r
341 \r
342 /*\r
343  * Unlike other ports pxPortInitialiseStack() is written in assembly code as it\r
344  * needs access to the portasmADDITIONAL_CONTEXT_SIZE constant.  The prototype\r
345  * for the function is as per the other ports:\r
346  * StackType_t *pxPortInitialiseStack( StackType_t *pxTopOfStack, TaskFunction_t pxCode, void *pvParameters );\r
347  *\r
348  * As per the standard RISC-V ABI pxTopcOfStack is passed in in a0, pxCode in\r
349  * a1, and pvParameters in a2.  The new top of stack is passed out in a0.\r
350  *\r
351  * RISC-V maps registers to ABI names as follows (X1 to X31 integer registers\r
352  * for the 'I' profile, X1 to X15 for the 'E' profile, currently I assumed).\r
353  *\r
354  * Register             ABI Name        Description                                             Saver\r
355  * x0                   zero            Hard-wired zero                                 -\r
356  * x1                   ra                      Return address                                  Caller\r
357  * x2                   sp                      Stack pointer                                   Callee\r
358  * x3                   gp                      Global pointer                                  -\r
359  * x4                   tp                      Thread pointer                                  -\r
360  * x5-7                 t0-2            Temporaries                                             Caller\r
361  * x8                   s0/fp           Saved register/Frame pointer    Callee\r
362  * x9                   s1                      Saved register                                  Callee\r
363  * x10-11               a0-1            Function Arguments/return values Caller\r
364  * x12-17               a2-7            Function arguments                              Caller\r
365  * x18-27               s2-11           Saved registers                                 Callee\r
366  * x28-31               t3-6            Temporaries                                             Caller\r
367  *\r
368  * The RISC-V context is saved t FreeRTOS tasks in the following stack frame,\r
369  * where the global and thread pointers are currently assumed to be constant so\r
370  * are not saved:\r
371  *\r
372  * mstatus\r
373  * x31\r
374  * x30\r
375  * x29\r
376  * x28\r
377  * x27\r
378  * x26\r
379  * x25\r
380  * x24\r
381  * x23\r
382  * x22\r
383  * x21\r
384  * x20\r
385  * x19\r
386  * x18\r
387  * x17\r
388  * x16\r
389  * x15\r
390  * x14\r
391  * x13\r
392  * x12\r
393  * x11\r
394  * pvParameters\r
395  * x9\r
396  * x8\r
397  * x7\r
398  * x6\r
399  * x5\r
400  * portTASK_RETURN_ADDRESS\r
401  * [chip specific registers go here]\r
402  * pxCode\r
403  */\r
404 pxPortInitialiseStack:\r
405 \r
406         csrr t0, CSR_MSTATUS                                    /* Obtain current mstatus value. */\r
407         addi t1, x0, 0x188                                      /* Generate the value 0x1880, which are the MPIE and MPP bits to set in mstatus. */\r
408         slli t1, t1, 4\r
409         or t0, t0, t1                                           /* Set MPIE and MPP bits in mstatus value. */\r
410 \r
411         addi a0, a0, -portWORD_SIZE\r
412         store_x t0, 0(a0)                                       /* mstatus onto the stack. */\r
413         addi a0, a0, -(22 * portWORD_SIZE)      /* Space for registers x11-x31. */\r
414         store_x a2, 0(a0)                                       /* Task parameters (pvParameters parameter) goes into register X10/a0 on the stack. */\r
415         addi a0, a0, -(6 * portWORD_SIZE)       /* Space for registers x5-x9. */\r
416         store_x x0, 0(a0)                                       /* Return address onto the stack, could be portTASK_RETURN_ADDRESS */\r
417         addi t0, x0, portasmADDITIONAL_CONTEXT_SIZE /* The number of chip specific additional registers. */\r
418 chip_specific_stack_frame:                              /* First add any chip specific registers to the stack frame being created. */\r
419         beq t0, x0, no_more_regs                        /* No more chip specific registers to save. */\r
420         addi a0, a0, -portWORD_SIZE                     /* Make space for chip specific register. */\r
421         store_x x0, 0(a0)                                       /* Give the chip specific register an initial value of zero. */\r
422         addi t0, t0, -1                                         /* Decrement the count of chip specific registers remaining. */\r
423         j chip_specific_stack_frame                     /* Until no more chip specific registers. */\r
424 no_more_regs:\r
425         addi a0, a0, -portWORD_SIZE\r
426         store_x a1, 0(a0)                                       /* mret value (pxCode parameter) onto the stack. */\r
427         ret\r
428 \r
429 /*-----------------------------------------------------------*/\r