]> git.sur5r.net Git - freertos/blob - FreeRTOS/Source/portable/MPLAB/PIC32MX/ISR_Support.h
Update version number to 8.1.2 after moving the defaulting of configUSE_PORT_OPTIMISE...
[freertos] / FreeRTOS / Source / portable / MPLAB / PIC32MX / ISR_Support.h
1 /*\r
2     FreeRTOS V8.1.2 - Copyright (C) 2014 Real Time Engineers Ltd.\r
3     All rights reserved\r
4 \r
5     VISIT http://www.FreeRTOS.org TO ENSURE YOU ARE USING THE LATEST VERSION.\r
6 \r
7     ***************************************************************************\r
8      *                                                                       *\r
9      *    FreeRTOS provides completely free yet professionally developed,    *\r
10      *    robust, strictly quality controlled, supported, and cross          *\r
11      *    platform software that has become a de facto standard.             *\r
12      *                                                                       *\r
13      *    Help yourself get started quickly and support the FreeRTOS         *\r
14      *    project by purchasing a FreeRTOS tutorial book, reference          *\r
15      *    manual, or both from: http://www.FreeRTOS.org/Documentation        *\r
16      *                                                                       *\r
17      *    Thank you!                                                         *\r
18      *                                                                       *\r
19     ***************************************************************************\r
20 \r
21     This file is part of the FreeRTOS distribution.\r
22 \r
23     FreeRTOS is free software; you can redistribute it and/or modify it under\r
24     the terms of the GNU General Public License (version 2) as published by the\r
25     Free Software Foundation >>!AND MODIFIED BY!<< the FreeRTOS exception.\r
26 \r
27     >>!   NOTE: The modification to the GPL is included to allow you to     !<<\r
28     >>!   distribute a combined work that includes FreeRTOS without being   !<<\r
29     >>!   obliged to provide the source code for proprietary components     !<<\r
30     >>!   outside of the FreeRTOS kernel.                                   !<<\r
31 \r
32     FreeRTOS is distributed in the hope that it will be useful, but WITHOUT ANY\r
33     WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS\r
34     FOR A PARTICULAR PURPOSE.  Full license text is available from the following\r
35     link: http://www.freertos.org/a00114.html\r
36 \r
37     1 tab == 4 spaces!\r
38 \r
39     ***************************************************************************\r
40      *                                                                       *\r
41      *    Having a problem?  Start by reading the FAQ "My application does   *\r
42      *    not run, what could be wrong?"                                     *\r
43      *                                                                       *\r
44      *    http://www.FreeRTOS.org/FAQHelp.html                               *\r
45      *                                                                       *\r
46     ***************************************************************************\r
47 \r
48     http://www.FreeRTOS.org - Documentation, books, training, latest versions,\r
49     license and Real Time Engineers Ltd. contact details.\r
50 \r
51     http://www.FreeRTOS.org/plus - A selection of FreeRTOS ecosystem products,\r
52     including FreeRTOS+Trace - an indispensable productivity tool, a DOS\r
53     compatible FAT file system, and our tiny thread aware UDP/IP stack.\r
54 \r
55     http://www.OpenRTOS.com - Real Time Engineers ltd license FreeRTOS to High\r
56     Integrity Systems to sell under the OpenRTOS brand.  Low cost OpenRTOS\r
57     licenses offer ticketed support, indemnification and middleware.\r
58 \r
59     http://www.SafeRTOS.com - High Integrity Systems also provide a safety\r
60     engineered and independently SIL3 certified version for use in safety and\r
61     mission critical applications that require provable dependability.\r
62 \r
63     1 tab == 4 spaces!\r
64 */\r
65 \r
66 #include "FreeRTOSConfig.h"\r
67 \r
68 #define portCONTEXT_SIZE 132\r
69 #define portEPC_STACK_LOCATION  124\r
70 #define portSTATUS_STACK_LOCATION 128\r
71 \r
72 /******************************************************************/\r
73 .macro  portSAVE_CONTEXT\r
74 \r
75         /* Make room for the context. First save the current status so it can be\r
76         manipulated, and the cause and EPC registers so their original values are\r
77         captured. */\r
78         mfc0            k0, _CP0_CAUSE\r
79         addiu           sp,     sp, -portCONTEXT_SIZE\r
80         mfc0            k1, _CP0_STATUS\r
81 \r
82         /* Also save s6 and s5 so they can be used.  Any nesting interrupts should\r
83         maintain the values of these registers across the ISR. */\r
84         sw                      s6, 44(sp)\r
85         sw                      s5, 40(sp)\r
86         sw                      k1, portSTATUS_STACK_LOCATION(sp)\r
87 \r
88         /* Prepare to enable interrupts above the current priority. */\r
89         srl                     k0, k0, 0xa\r
90         ins             k1, k0, 10, 6\r
91         ins                     k1, zero, 1, 4\r
92 \r
93         /* s5 is used as the frame pointer. */\r
94         add                     s5, zero, sp\r
95 \r
96         /* Check the nesting count value. */\r
97         la                      k0, uxInterruptNesting\r
98         lw                      s6, (k0)\r
99 \r
100         /* If the nesting count is 0 then swap to the the system stack, otherwise\r
101         the system stack is already being used. */\r
102         bne                     s6, zero, 1f\r
103         nop\r
104 \r
105         /* Swap to the system stack. */\r
106         la                      sp, xISRStackTop\r
107         lw                      sp, (sp)\r
108 \r
109         /* Increment and save the nesting count. */\r
110 1:      addiu           s6, s6, 1\r
111         sw                      s6, 0(k0)\r
112 \r
113         /* s6 holds the EPC value, this is saved after interrupts are re-enabled. */\r
114         mfc0            s6, _CP0_EPC\r
115 \r
116         /* Re-enable interrupts. */\r
117         mtc0            k1, _CP0_STATUS\r
118 \r
119         /* Save the context into the space just created.  s6 is saved again\r
120         here as it now contains the EPC value.  No other s registers need be\r
121         saved. */\r
122         sw                      ra, 120(s5)\r
123         sw                      s8, 116(s5)\r
124         sw                      t9, 112(s5)\r
125         sw                      t8, 108(s5)\r
126         sw                      t7, 104(s5)\r
127         sw                      t6, 100(s5)\r
128         sw                      t5, 96(s5)\r
129         sw                      t4, 92(s5)\r
130         sw                      t3, 88(s5)\r
131         sw                      t2, 84(s5)\r
132         sw                      t1, 80(s5)\r
133         sw                      t0, 76(s5)\r
134         sw                      a3, 72(s5)\r
135         sw                      a2, 68(s5)\r
136         sw                      a1, 64(s5)\r
137         sw                      a0, 60(s5)\r
138         sw                      v1, 56(s5)\r
139         sw                      v0, 52(s5)\r
140         sw                      s6, portEPC_STACK_LOCATION(s5)\r
141         sw                      $1, 16(s5)\r
142 \r
143         /* s6 is used as a scratch register. */\r
144         mfhi            s6\r
145         sw                      s6, 12(s5)\r
146         mflo            s6\r
147         sw                      s6, 8(s5)\r
148 \r
149         /* Update the task stack pointer value if nesting is zero. */\r
150         la                      s6, uxInterruptNesting\r
151         lw                      s6, (s6)\r
152         addiu           s6, s6, -1\r
153         bne                     s6, zero, 1f\r
154         nop\r
155 \r
156         /* Save the stack pointer. */\r
157         la                      s6, uxSavedTaskStackPointer\r
158         sw                      s5, (s6)\r
159 1:\r
160         .endm\r
161 \r
162 /******************************************************************/\r
163 .macro  portRESTORE_CONTEXT\r
164 \r
165         /* Restore the stack pointer from the TCB.  This is only done if the\r
166         nesting count is 1. */\r
167         la                      s6, uxInterruptNesting\r
168         lw                      s6, (s6)\r
169         addiu           s6, s6, -1\r
170         bne                     s6, zero, 1f\r
171         nop\r
172         la                      s6, uxSavedTaskStackPointer\r
173         lw                      s5, (s6)\r
174 \r
175         /* Restore the context. */\r
176 1:      lw                      s6, 8(s5)\r
177         mtlo            s6\r
178         lw                      s6, 12(s5)\r
179         mthi            s6\r
180         lw                      $1, 16(s5)\r
181         /* s6 is loaded as it was used as a scratch register and therefore saved\r
182         as part of the interrupt context. */\r
183         lw                      s6, 44(s5)\r
184         lw                      v0, 52(s5)\r
185         lw                      v1, 56(s5)\r
186         lw                      a0, 60(s5)\r
187         lw                      a1, 64(s5)\r
188         lw                      a2, 68(s5)\r
189         lw                      a3, 72(s5)\r
190         lw                      t0, 76(s5)\r
191         lw                      t1, 80(s5)\r
192         lw                      t2, 84(s5)\r
193         lw                      t3, 88(s5)\r
194         lw                      t4, 92(s5)\r
195         lw                      t5, 96(s5)\r
196         lw                      t6, 100(s5)\r
197         lw                      t7, 104(s5)\r
198         lw                      t8, 108(s5)\r
199         lw                      t9, 112(s5)\r
200         lw                      s8, 116(s5)\r
201         lw                      ra, 120(s5)\r
202 \r
203         /* Protect access to the k registers, and others. */\r
204         di\r
205         ehb\r
206 \r
207         /* Decrement the nesting count. */\r
208         la                      k0, uxInterruptNesting\r
209         lw                      k1, (k0)\r
210         addiu           k1, k1, -1\r
211         sw                      k1, 0(k0)\r
212 \r
213         lw                      k0, portSTATUS_STACK_LOCATION(s5)\r
214         lw                      k1, portEPC_STACK_LOCATION(s5)\r
215 \r
216         /* Leave the stack in its original state.  First load sp from s5, then\r
217         restore s5 from the stack. */\r
218         add                     sp, zero, s5\r
219         lw                      s5, 40(sp)\r
220         addiu           sp, sp, portCONTEXT_SIZE\r
221 \r
222         mtc0            k0, _CP0_STATUS\r
223         mtc0            k1, _CP0_EPC\r
224         ehb\r
225         eret\r
226         nop\r
227 \r
228         .endm\r
229 \r