]> git.sur5r.net Git - freertos/blob - Source/portable/oWatcom/16BitDOS/PC/port.c
Update version number to V7.0.1.
[freertos] / Source / portable / oWatcom / 16BitDOS / PC / port.c
1 /*\r
2     FreeRTOS V7.0.1 - Copyright (C) 2011 Real Time Engineers Ltd.\r
3         \r
4 \r
5     ***************************************************************************\r
6      *                                                                       *\r
7      *    FreeRTOS tutorial books are available in pdf and paperback.        *\r
8      *    Complete, revised, and edited pdf reference manuals are also       *\r
9      *    available.                                                         *\r
10      *                                                                       *\r
11      *    Purchasing FreeRTOS documentation will not only help you, by       *\r
12      *    ensuring you get running as quickly as possible and with an        *\r
13      *    in-depth knowledge of how to use FreeRTOS, it will also help       *\r
14      *    the FreeRTOS project to continue with its mission of providing     *\r
15      *    professional grade, cross platform, de facto standard solutions    *\r
16      *    for microcontrollers - completely free of charge!                  *\r
17      *                                                                       *\r
18      *    >>> See http://www.FreeRTOS.org/Documentation for details. <<<     *\r
19      *                                                                       *\r
20      *    Thank you for using FreeRTOS, and thank you for your support!      *\r
21      *                                                                       *\r
22     ***************************************************************************\r
23 \r
24 \r
25     This file is part of the FreeRTOS distribution.\r
26 \r
27     FreeRTOS is free software; you can redistribute it and/or modify it under\r
28     the terms of the GNU General Public License (version 2) as published by the\r
29     Free Software Foundation AND MODIFIED BY the FreeRTOS exception.\r
30     >>>NOTE<<< The modification to the GPL is included to allow you to\r
31     distribute a combined work that includes FreeRTOS without being obliged to\r
32     provide the source code for proprietary components outside of the FreeRTOS\r
33     kernel.  FreeRTOS is distributed in the hope that it will be useful, but\r
34     WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY\r
35     or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for\r
36     more details. You should have received a copy of the GNU General Public\r
37     License and the FreeRTOS license exception along with FreeRTOS; if not it\r
38     can be viewed here: http://www.freertos.org/a00114.html and also obtained\r
39     by writing to Richard Barry, contact details for whom are available on the\r
40     FreeRTOS WEB site.\r
41 \r
42     1 tab == 4 spaces!\r
43 \r
44     http://www.FreeRTOS.org - Documentation, latest information, license and\r
45     contact details.\r
46 \r
47     http://www.SafeRTOS.com - A version that is certified for use in safety\r
48     critical systems.\r
49 \r
50     http://www.OpenRTOS.com - Commercial support, development, porting,\r
51     licensing and training services.\r
52 */\r
53 \r
54 /*\r
55 Changes from V1.00:\r
56         \r
57         + Call to taskYIELD() from within tick ISR has been replaced by the more\r
58           efficient portSWITCH_CONTEXT().\r
59         + ISR function definitions renamed to include the prv prefix.\r
60 \r
61 Changes from V1.2.0:\r
62 \r
63         + prvPortResetPIC() is now called last thing before the end of the \r
64           preemptive tick routine.\r
65 \r
66 Changes from V2.6.1\r
67 \r
68         + Replaced the sUsingPreemption variable with the configUSE_PREEMPTION\r
69           macro to be consistent with the later ports.\r
70 \r
71 Changes from V4.0.1\r
72         \r
73         + Add function prvSetTickFrequencyDefault() to set the DOS tick back to\r
74           its proper value when the scheduler exits. \r
75 */\r
76 \r
77 #include <stdlib.h>\r
78 #include <stdio.h>\r
79 #include <i86.h>\r
80 #include <dos.h>\r
81 #include <setjmp.h>\r
82 \r
83 #include "FreeRTOS.h"\r
84 #include "task.h"\r
85 #include "portasm.h"\r
86 \r
87 /*-----------------------------------------------------------\r
88  * Implementation of functions defined in portable.h for the industrial\r
89  * PC port.\r
90  *----------------------------------------------------------*/\r
91 \r
92 /*lint -e950 Non ANSI reserved words okay in this file only. */\r
93 \r
94 #define portTIMER_INT_NUMBER    0x08\r
95 \r
96 /* Setup hardware for required tick interrupt rate. */\r
97 static void prvSetTickFrequency( unsigned long ulTickRateHz );\r
98 \r
99 /* Restore hardware to as it was prior to starting the scheduler. */\r
100 static void prvExitFunction( void );\r
101 \r
102 /* Either chain to the DOS tick (which itself clears the PIC) or clear the PIC\r
103 directly.  We chain to the DOS tick as close as possible to the standard DOS\r
104 tick rate. */\r
105 static void prvPortResetPIC( void );\r
106 \r
107 /* The tick ISR used depends on whether the preemptive or cooperative scheduler\r
108 is being used. */\r
109 #if configUSE_PREEMPTION == 1\r
110         /* Tick service routine used by the scheduler when preemptive scheduling is\r
111         being used. */\r
112         static void __interrupt __far prvPreemptiveTick( void );\r
113 #else\r
114         /* Tick service routine used by the scheduler when cooperative scheduling is \r
115         being used. */\r
116         static void __interrupt __far prvNonPreemptiveTick( void );\r
117 #endif\r
118 /* Trap routine used by taskYIELD() to manually cause a context switch. */\r
119 static void __interrupt __far prvYieldProcessor( void );\r
120 \r
121 /* Set the tick frequency back so the floppy drive works correctly when the\r
122 scheduler exits. */\r
123 static void prvSetTickFrequencyDefault( void );\r
124 \r
125 /*lint -e956 File scopes necessary here. */\r
126 \r
127 /* Used to signal when to chain to the DOS tick, and when to just clear the PIC ourselves. */\r
128 static short sDOSTickCounter;                                                   \r
129 \r
130 /* Set true when the vectors are set so the scheduler will service the tick. */\r
131 static short sSchedulerRunning = pdFALSE;                               \r
132 \r
133 /* Points to the original routine installed on the vector we use for manual context switches.  This is then used to restore the original routine during prvExitFunction(). */\r
134 static void ( __interrupt __far *pxOldSwitchISR )();            \r
135 \r
136 /* Points to the original routine installed on the vector we use to chain to the DOS tick.  This is then used to restore the original routine during prvExitFunction(). */\r
137 static void ( __interrupt __far *pxOldSwitchISRPlus1 )();       \r
138 \r
139 /* Used to restore the original DOS context when the scheduler is ended. */\r
140 static jmp_buf xJumpBuf;\r
141 \r
142 /*lint +e956 */\r
143 \r
144 /*-----------------------------------------------------------*/\r
145 portBASE_TYPE xPortStartScheduler( void )\r
146 {\r
147 pxISR pxOriginalTickISR;\r
148         \r
149         /* This is called with interrupts already disabled. */\r
150 \r
151         /* Remember what was on the interrupts we are going to use\r
152         so we can put them back later if required. */\r
153         pxOldSwitchISR = _dos_getvect( portSWITCH_INT_NUMBER );\r
154         pxOriginalTickISR = _dos_getvect( portTIMER_INT_NUMBER );\r
155         pxOldSwitchISRPlus1 = _dos_getvect( portSWITCH_INT_NUMBER + 1 );\r
156 \r
157         prvSetTickFrequency( configTICK_RATE_HZ );\r
158 \r
159         /* Put our manual switch (yield) function on a known\r
160         vector. */\r
161         _dos_setvect( portSWITCH_INT_NUMBER, prvYieldProcessor );\r
162 \r
163         /* Put the old tick on a different interrupt number so we can\r
164         call it when we want. */\r
165         _dos_setvect( portSWITCH_INT_NUMBER + 1, pxOriginalTickISR );\r
166 \r
167         #if configUSE_PREEMPTION == 1\r
168         {               \r
169                 /* Put our tick switch function on the timer interrupt. */\r
170                 _dos_setvect( portTIMER_INT_NUMBER, prvPreemptiveTick );\r
171         }\r
172         #else\r
173         {\r
174                 /* We want the timer interrupt to just increment the tick count. */\r
175                 _dos_setvect( portTIMER_INT_NUMBER, prvNonPreemptiveTick );\r
176         }\r
177         #endif\r
178 \r
179         /* Setup a counter that is used to call the DOS interrupt as close\r
180         to it's original frequency as can be achieved given our chosen tick\r
181         frequency. */\r
182         sDOSTickCounter = portTICKS_PER_DOS_TICK;\r
183 \r
184         /* Clean up function if we want to return to DOS. */\r
185         if( setjmp( xJumpBuf ) != 0 )\r
186         {\r
187                 prvExitFunction();\r
188                 sSchedulerRunning = pdFALSE;\r
189         }\r
190         else\r
191         {\r
192                 sSchedulerRunning = pdTRUE;\r
193 \r
194                 /* Kick off the scheduler by setting up the context of the first task. */\r
195                 portFIRST_CONTEXT();\r
196         }\r
197 \r
198         return sSchedulerRunning;\r
199 }\r
200 /*-----------------------------------------------------------*/\r
201 \r
202 /* The tick ISR used depends on whether the preemptive or cooperative scheduler\r
203 is being used. */\r
204 #if configUSE_PREEMPTION == 1\r
205         /* Tick service routine used by the scheduler when preemptive scheduling is\r
206         being used. */\r
207         static void __interrupt __far prvPreemptiveTick( void )\r
208         {\r
209                 /* Get the scheduler to update the task states following the tick. */\r
210                 vTaskIncrementTick();\r
211 \r
212                 /* Switch in the context of the next task to be run. */\r
213                 portSWITCH_CONTEXT();\r
214 \r
215                 /* Reset the PIC ready for the next time. */\r
216                 prvPortResetPIC();\r
217         }\r
218 #else\r
219         static void __interrupt __far prvNonPreemptiveTick( void )\r
220         {\r
221                 /* Same as preemptive tick, but the cooperative scheduler is being used\r
222                 so we don't have to switch in the context of the next task. */\r
223                 vTaskIncrementTick();\r
224                 prvPortResetPIC();\r
225         }\r
226 #endif\r
227 /*-----------------------------------------------------------*/\r
228 \r
229 \r
230 static void __interrupt __far prvYieldProcessor( void )\r
231 {\r
232         /* Switch in the context of the next task to be run. */\r
233         portSWITCH_CONTEXT();\r
234 }\r
235 /*-----------------------------------------------------------*/\r
236 \r
237 static void prvPortResetPIC( void )\r
238 {\r
239         /* We are going to call the DOS tick interrupt at as close a\r
240         frequency to the normal DOS tick as possible. */\r
241 \r
242         /* WE SHOULD NOT DO THIS IF YIELD WAS CALLED. */\r
243         --sDOSTickCounter;\r
244         if( sDOSTickCounter <= 0 )\r
245         {\r
246                 sDOSTickCounter = ( short ) portTICKS_PER_DOS_TICK;\r
247                 __asm{ int      portSWITCH_INT_NUMBER + 1 };             \r
248         }\r
249         else\r
250         {\r
251                 /* Reset the PIC as the DOS tick is not being called to\r
252                 do it. */\r
253                 __asm\r
254                 {\r
255                         mov     al, 20H\r
256                         out 20H, al\r
257                 };\r
258         }\r
259 }\r
260 /*-----------------------------------------------------------*/\r
261 \r
262 void vPortEndScheduler( void )\r
263 {\r
264         /* Jump back to the processor state prior to starting the\r
265         scheduler.  This means we are not going to be using a\r
266         task stack frame so the task can be deleted. */\r
267         longjmp( xJumpBuf, 1 );\r
268 }\r
269 /*-----------------------------------------------------------*/\r
270 \r
271 static void prvExitFunction( void )\r
272 {\r
273 void ( __interrupt __far *pxOriginalTickISR )();\r
274 \r
275         /* Interrupts should be disabled here anyway - but no \r
276         harm in making sure. */\r
277         portDISABLE_INTERRUPTS();\r
278         if( sSchedulerRunning == pdTRUE )\r
279         {\r
280                 /* Set the DOS tick back onto the timer ticker. */\r
281                 pxOriginalTickISR = _dos_getvect( portSWITCH_INT_NUMBER + 1 );\r
282                 _dos_setvect( portTIMER_INT_NUMBER, pxOriginalTickISR );\r
283                 prvSetTickFrequencyDefault();\r
284 \r
285                 /* Put back the switch interrupt routines that was in place\r
286                 before the scheduler started. */\r
287                 _dos_setvect( portSWITCH_INT_NUMBER, pxOldSwitchISR );\r
288                 _dos_setvect( portSWITCH_INT_NUMBER + 1, pxOldSwitchISRPlus1 );\r
289         }\r
290         /* The tick timer is back how DOS wants it.  We can re-enable\r
291         interrupts without the scheduler being called. */\r
292         portENABLE_INTERRUPTS();\r
293 \r
294         /* This will free up all the memory used by the scheduler.\r
295         exiting back to dos with INT21 AH=4CH will do this anyway so\r
296         it is not necessary to call this. */\r
297         vTaskCleanUpResources(); \r
298 }\r
299 /*-----------------------------------------------------------*/\r
300 \r
301 static void prvSetTickFrequency( unsigned long ulTickRateHz )\r
302 {\r
303 const unsigned short usPIT_MODE = ( unsigned short ) 0x43;\r
304 const unsigned short usPIT0 = ( unsigned short ) 0x40;\r
305 const unsigned long ulPIT_CONST = ( unsigned long ) 1193180;\r
306 const unsigned short us8254_CTR0_MODE3 = ( unsigned short ) 0x36;\r
307 unsigned long ulOutput;\r
308 \r
309         /* Setup the 8245 to tick at the wanted frequency. */\r
310         portOUTPUT_BYTE( usPIT_MODE, us8254_CTR0_MODE3 );\r
311         ulOutput = ulPIT_CONST / ulTickRateHz;\r
312    \r
313         portOUTPUT_BYTE( usPIT0, ( unsigned short )( ulOutput & ( unsigned long ) 0xff ) );\r
314         ulOutput >>= 8;\r
315         portOUTPUT_BYTE( usPIT0, ( unsigned short ) ( ulOutput & ( unsigned long ) 0xff ) );\r
316 }\r
317 /*-----------------------------------------------------------*/\r
318 \r
319 static void prvSetTickFrequencyDefault( void )\r
320 {\r
321 const unsigned short usPIT_MODE = ( unsigned short ) 0x43;\r
322 const unsigned short usPIT0 = ( unsigned short ) 0x40;\r
323 const unsigned short us8254_CTR0_MODE3 = ( unsigned short ) 0x36;\r
324 \r
325         portOUTPUT_BYTE( usPIT_MODE, us8254_CTR0_MODE3 );\r
326         portOUTPUT_BYTE( usPIT0,0 );\r
327         portOUTPUT_BYTE( usPIT0,0 );\r
328 }\r
329 \r
330 \r
331 /*lint +e950 */\r
332 \r