2 FreeRTOS V7.6.0 - Copyright (C) 2013 Real Time Engineers Ltd.
\r
5 VISIT http://www.FreeRTOS.org TO ENSURE YOU ARE USING THE LATEST VERSION.
\r
7 ***************************************************************************
\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
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
19 ***************************************************************************
\r
21 This file is part of the FreeRTOS distribution.
\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
27 >>! NOTE: The modification to the GPL is included to allow you to distribute
\r
28 >>! a combined work that includes FreeRTOS without being obliged to provide
\r
29 >>! the source code for proprietary components outside of the FreeRTOS
\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
39 ***************************************************************************
\r
41 * Having a problem? Start by reading the FAQ "My application does *
\r
42 * not run, what could be wrong?" *
\r
44 * http://www.FreeRTOS.org/FAQHelp.html *
\r
46 ***************************************************************************
\r
48 http://www.FreeRTOS.org - Documentation, books, training, latest versions,
\r
49 license and Real Time Engineers Ltd. contact details.
\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
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
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
67 /*-----------------------------------------------------------
\r
68 * Implementation of functions defined in portable.h for the Tern EE 186
\r
70 *----------------------------------------------------------*/
\r
72 /* Library includes. */
\r
73 #include <embedded.h>
\r
76 /* Scheduler includes. */
\r
77 #include "FreeRTOS.h"
\r
79 #include "portasm.h"
\r
81 /* The timer increments every four clocks, hence the divide by 4. */
\r
82 #define portTIMER_COMPARE ( uint16_t ) ( ( configCPU_CLOCK_HZ / configTICK_RATE_HZ ) / ( uint32_t ) 4 )
\r
84 /* From the RDC data sheet. */
\r
85 #define portENABLE_TIMER_AND_INTERRUPT ( uint16_t ) 0xe001
\r
87 /* Interrupt control. */
\r
88 #define portEIO_REGISTER 0xff22
\r
89 #define portCLEAR_INTERRUPT 0x0008
\r
91 /* Setup the hardware to generate the required tick frequency. */
\r
92 static void prvSetupTimerInterrupt( void );
\r
94 /* The ISR used depends on whether the preemptive or cooperative scheduler
\r
96 #if( configUSE_PREEMPTION == 1 )
\r
97 /* Tick service routine used by the scheduler when preemptive scheduling is
\r
99 static void __interrupt __far prvPreemptiveTick( void );
\r
101 /* Tick service routine used by the scheduler when cooperative scheduling is
\r
103 static void __interrupt __far prvNonPreemptiveTick( void );
\r
106 /* Trap routine used by taskYIELD() to manually cause a context switch. */
\r
107 static void __interrupt __far prvYieldProcessor( void );
\r
109 /* The timer initialisation functions leave interrupts enabled,
\r
110 which is not what we want. This ISR is installed temporarily in case
\r
111 the timer fires before we get a change to disable interrupts again. */
\r
112 static void __interrupt __far prvDummyISR( void );
\r
114 /*-----------------------------------------------------------*/
\r
115 /* See header file for description. */
\r
116 StackType_t *pxPortInitialiseStack( StackType_t *pxTopOfStack, pdTASK_CODE pxCode, void *pvParameters )
\r
118 StackType_t DS_Reg = 0;
\r
120 /* Place a few bytes of known values on the bottom of the stack.
\r
121 This is just useful for debugging. */
\r
123 *pxTopOfStack = 0x1111;
\r
125 *pxTopOfStack = 0x2222;
\r
127 *pxTopOfStack = 0x3333;
\r
130 /* We are going to start the scheduler using a return from interrupt
\r
131 instruction to load the program counter, so first there would be the
\r
132 function call with parameters preamble. */
\r
134 *pxTopOfStack = FP_SEG( pvParameters );
\r
136 *pxTopOfStack = FP_OFF( pvParameters );
\r
138 *pxTopOfStack = FP_SEG( pxCode );
\r
140 *pxTopOfStack = FP_OFF( pxCode );
\r
143 /* Next the status register and interrupt return address. */
\r
144 *pxTopOfStack = portINITIAL_SW;
\r
146 *pxTopOfStack = FP_SEG( pxCode );
\r
148 *pxTopOfStack = FP_OFF( pxCode );
\r
151 /* The remaining registers would be pushed on the stack by our context
\r
152 switch function. These are loaded with values simply to make debugging
\r
154 *pxTopOfStack = ( StackType_t ) 0xAAAA; /* AX */
\r
156 *pxTopOfStack = ( StackType_t ) 0xBBBB; /* BX */
\r
158 *pxTopOfStack = ( StackType_t ) 0xCCCC; /* CX */
\r
160 *pxTopOfStack = ( StackType_t ) 0xDDDD; /* DX */
\r
162 *pxTopOfStack = ( StackType_t ) 0xEEEE; /* ES */
\r
165 /* We need the true data segment. */
\r
166 __asm{ MOV DS_Reg, DS };
\r
168 *pxTopOfStack = DS_Reg; /* DS */
\r
170 *pxTopOfStack = ( StackType_t ) 0x0123; /* SI */
\r
172 *pxTopOfStack = ( StackType_t ) 0xDDDD; /* DI */
\r
174 *pxTopOfStack = ( StackType_t ) 0xBBBB; /* BP */
\r
176 return pxTopOfStack;
\r
178 /*-----------------------------------------------------------*/
\r
180 BaseType_t xPortStartScheduler( void )
\r
182 /* This is called with interrupts already disabled. */
\r
184 /* Put our manual switch (yield) function on a known
\r
186 setvect( portSWITCH_INT_NUMBER, prvYieldProcessor );
\r
188 /* Setup the tick interrupt. */
\r
189 prvSetupTimerInterrupt();
\r
191 /* Kick off the scheduler by setting up the context of the first task. */
\r
192 portFIRST_CONTEXT();
\r
194 /* Should not get here! */
\r
197 /*-----------------------------------------------------------*/
\r
199 static void __interrupt __far prvDummyISR( void )
\r
201 /* The timer initialisation functions leave interrupts enabled,
\r
202 which is not what we want. This ISR is installed temporarily in case
\r
203 the timer fires before we get a change to disable interrupts again. */
\r
204 outport( portEIO_REGISTER, portCLEAR_INTERRUPT );
\r
206 /*-----------------------------------------------------------*/
\r
208 /* The ISR used depends on whether the preemptive or cooperative scheduler
\r
210 #if( configUSE_PREEMPTION == 1 )
\r
211 static void __interrupt __far prvPreemptiveTick( void )
\r
213 /* Get the scheduler to update the task states following the tick. */
\r
214 if( xTaskIncrementTick() != pdFALSE )
\r
216 /* Switch in the context of the next task to be run. */
\r
217 portSWITCH_CONTEXT();
\r
220 /* Reset interrupt. */
\r
221 outport( portEIO_REGISTER, portCLEAR_INTERRUPT );
\r
224 static void __interrupt __far prvNonPreemptiveTick( void )
\r
226 /* Same as preemptive tick, but the cooperative scheduler is being used
\r
227 so we don't have to switch in the context of the next task. */
\r
228 xTaskIncrementTick();
\r
230 /* Reset interrupt. */
\r
231 outport( portEIO_REGISTER, portCLEAR_INTERRUPT );
\r
234 /*-----------------------------------------------------------*/
\r
236 static void __interrupt __far prvYieldProcessor( void )
\r
238 /* Switch in the context of the next task to be run. */
\r
239 portSWITCH_CONTEXT();
\r
241 /*-----------------------------------------------------------*/
\r
243 void vPortEndScheduler( void )
\r
245 /* Not implemented. */
\r
247 /*-----------------------------------------------------------*/
\r
249 static void prvSetupTimerInterrupt( void )
\r
251 const uint16_t usTimerACompare = portTIMER_COMPARE, usTimerAMode = portENABLE_TIMER_AND_INTERRUPT;
\r
252 const uint16_t usT2_IRQ = 0x13;
\r
254 /* Configure the timer, the dummy handler is used here as the init
\r
255 function leaves interrupts enabled. */
\r
256 t2_init( usTimerAMode, usTimerACompare, prvDummyISR );
\r
258 /* Disable interrupts again before installing the real handlers. */
\r
259 portDISABLE_INTERRUPTS();
\r
261 #if( configUSE_PREEMPTION == 1 )
\r
262 /* Tick service routine used by the scheduler when preemptive scheduling is
\r
264 setvect( usT2_IRQ, prvPreemptiveTick );
\r
266 /* Tick service routine used by the scheduler when cooperative scheduling is
\r
268 setvect( usT2_IRQ, prvNonPreemptiveTick );
\r