URL
https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk
Subversion Repositories openrisc_2011-10-31
[/] [openrisc/] [trunk/] [rtos/] [freertos-6.1.1/] [Source/] [portable/] [IAR/] [V850ES/] [portasm_Hx2.s85] - Rev 572
Compare with Previous | Blame | View Log
;/*; FreeRTOS V6.1.1 - Copyright (C) 2011 Real Time Engineers Ltd.;; ***************************************************************************; * *; * If you are: *; * *; * + New to FreeRTOS, *; * + Wanting to learn FreeRTOS or multitasking in general quickly *; * + Looking for basic training, *; * + Wanting to improve your FreeRTOS skills and productivity *; * *; * then take a look at the FreeRTOS books - available as PDF or paperback *; * *; * "Using the FreeRTOS Real Time Kernel - a Practical Guide" *; * http://www.FreeRTOS.org/Documentation *; * *; * A pdf reference manual is also available. Both are usually delivered *; * to your inbox within 20 minutes to two hours when purchased between 8am *; * and 8pm GMT (although please allow up to 24 hours in case of *; * exceptional circumstances). Thank you for your support! *; * *; ***************************************************************************;; This file is part of the FreeRTOS distribution.;; FreeRTOS is free software; you can redistribute it and/or modify it under; the terms of the GNU General Public License (version 2) as published by the; Free Software Foundation AND MODIFIED BY the FreeRTOS exception.; ***NOTE*** The exception to the GPL is included to allow you to distribute; a combined work that includes FreeRTOS without being obliged to provide the; source code for proprietary components outside of the FreeRTOS kernel.; FreeRTOS is distributed in the hope that it will be useful, but WITHOUT; ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or; FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for; more details. You should have received a copy of the GNU General Public; License and the FreeRTOS license exception along with FreeRTOS; if not it; can be viewed here: http://www.freertos.org/a00114.html and also obtained; by writing to Richard Barry, contact details for whom are available on the; FreeRTOS WEB site.;; 1 tab == 4 spaces!;; http://www.FreeRTOS.org - Documentation, latest information, license and; contact details.;; http://www.SafeRTOS.com - A version that is certified for use in safety; critical systems.;; http://www.OpenRTOS.com - Commercial support, development, porting,; licensing and training services.;*/; Note: Select the correct include files for the device used by the application.#include "FreeRTOSConfig.h";------------------------------------------------------------------------------; Functions used by scheduler;------------------------------------------------------------------------------EXTERN vTaskSwitchContextEXTERN vTaskIncrementTick; Variables used by scheduler;------------------------------------------------------------------------------EXTERN pxCurrentTCBEXTERN usCriticalNesting; Functions implemented in this file;------------------------------------------------------------------------------PUBLIC vPortYieldPUBLIC vPortStart; Security ID definition;------------------------------------------------------------------------------#define CG_SECURITY0 0FFH#define CG_SECURITY1 0FFH#define CG_SECURITY2 0FFH#define CG_SECURITY3 0FFH#define CG_SECURITY4 0FFH#define CG_SECURITY5 0FFH#define CG_SECURITY6 0FFH#define CG_SECURITY7 0FFH#define CG_SECURITY8 0FFH#define CG_SECURITY9 0FFH; Tick ISR Prototype;------------------------------------------------------------------------------PUBWEAK `??MD_INTTM0EQ0??INTVEC 544`PUBLIC MD_INTTM0EQ0MD_INTTM0EQ0 SYMBOL "MD_INTTM0EQ0"`??MD_INTTM0EQ0??INTVEC 544` SYMBOL "??INTVEC 544", MD_INTTM0EQ0;------------------------------------------------------------------------------; portSAVE_CONTEXT MACRO; Saves the context of the remaining general purpose registers; and the usCriticalNesting Value of the active Task onto the task stack; saves stack pointer to the TCB;------------------------------------------------------------------------------portSAVE_CONTEXT MACRO#if configDATA_MODE == 1 ; Using the Tiny data modelprepare {r20,r21,r22,r23,r24,r25,r26,r27,r28,r29,r30},76,sp ; save general purpose registerssst.w r19,72[ep]sst.w r18,68[ep]sst.w r17,64[ep]sst.w r16,60[ep]sst.w r15,56[ep]sst.w r14,52[ep]sst.w r13,48[ep]sst.w r12,44[ep]sst.w r11,40[ep]sst.w r10,36[ep]sst.w r9,32[ep]sst.w r8,28[ep]sst.w r7,24[ep]sst.w r6,20[ep]sst.w r5,16[ep]sst.w r4,12[ep]#else ; Using the Small/Large data modelprepare {r20,r21,r22,r23,r24,r26,r27,r28,r29,r30},72,sp ; save general purpose registerssst.w r19,68[ep]sst.w r18,64[ep]sst.w r17,60[ep]sst.w r16,56[ep]sst.w r15,52[ep]sst.w r14,48[ep]sst.w r13,44[ep]sst.w r12,40[ep]sst.w r11,36[ep]sst.w r10,32[ep]sst.w r9,28[ep]sst.w r8,24[ep]sst.w r7,20[ep]sst.w r6,16[ep]sst.w r5,12[ep]#endif /* configDATA_MODE */sst.w r2,8[ep]sst.w r1,4[ep]MOVHI hi1(usCriticalNesting),r0,r1 ; save usCriticalNesting value to stackld.w lw1(usCriticalNesting)[r1],r2sst.w r2,0[ep]MOVHI hi1(pxCurrentTCB),r0,r1 ; save SP to top of current TCBld.w lw1(pxCurrentTCB)[r1],r2st.w sp,0[r2]ENDM;------------------------------------------------------------------------------;------------------------------------------------------------------------------; portRESTORE_CONTEXT MACRO; Gets stack pointer from the current TCB; Restores the context of the usCriticalNesting value and general purpose; registers of the selected task from the task stack;------------------------------------------------------------------------------portRESTORE_CONTEXT MACROMOVHI hi1(pxCurrentTCB),r0,r1 ; get Stackpointer addressld.w lw1(pxCurrentTCB)[r1],spMOV sp,r1ld.w 0[r1],sp ; load stackpointerMOV sp,ep ; set stack pointer to element pointersld.w 0[ep],r1 ; load usCriticalNesting value from stackMOVHI hi1(usCriticalNesting),r0,r2st.w r1,lw1(usCriticalNesting)[r2]sld.w 4[ep],r1 ; restore general purpose registerssld.w 8[ep],r2#if configDATA_MODE == 1 ; Using Tiny data modelsld.w 12[ep],r4sld.w 16[ep],r5sld.w 20[ep],r6sld.w 24[ep],r7sld.w 28[ep],r8sld.w 32[ep],r9sld.w 36[ep],r10sld.w 40[ep],r11sld.w 44[ep],r12sld.w 48[ep],r13sld.w 52[ep],r14sld.w 56[ep],r15sld.w 60[ep],r16sld.w 64[ep],r17sld.w 68[ep],r18sld.w 72[ep],r19dispose 76,{r20,r21,r22,r23,r24,r25,r26,r27,r28,r29,r30}#else ; Using Small/Large data modelsld.w 12[ep],r5sld.w 16[ep],r6sld.w 20[ep],r7sld.w 24[ep],r8sld.w 28[ep],r9sld.w 32[ep],r10sld.w 36[ep],r11sld.w 40[ep],r12sld.w 44[ep],r13sld.w 48[ep],r14sld.w 52[ep],r15sld.w 56[ep],r16sld.w 60[ep],r17sld.w 64[ep],r18sld.w 68[ep],r19dispose 72,{r20,r21,r22,r23,r24,r26,r27,r28,r29,r30}#endif /* configDATA_MODE */ENDM;------------------------------------------------------------------------------;------------------------------------------------------------------------------; Restore the context of the first task that is going to run.;; Input: NONE;; Call: CALL vPortStart;; Output: NONE;------------------------------------------------------------------------------RSEG CODE:CODEvPortStart:portRESTORE_CONTEXT ; Restore the context of whichever task the ...ld.w 0[sp],lpldsr lp,5 ; restore PSWDIld.w 4[sp],lp ; restore LPld.w 8[sp],lp ; restore LPADD 0x0C,sp ; set SP to right positionEIjmp [lp];------------------------------------------------------------------------------;------------------------------------------------------------------------------; Port Yield function to check for a Task switch in the cooperative and; preemptive mode;; Input: NONE;; Call: CALL vPortYield;; Output: NONE;------------------------------------------------------------------------------RSEG CODE:CODEvPortYield:add -0x0C,sp ; prepare stack to save necessary valuesst.w lp,8[sp] ; store LP to stackstsr 0,r31st.w lp,4[sp] ; store EIPC to stackstsr 1,lpst.w lp,0[sp] ; store EIPSW to stackportSAVE_CONTEXT ; Save the context of the current task.jarl vTaskSwitchContext,lp ; Call the scheduler.portRESTORE_CONTEXT ; Restore the context of whichever task the ...; ... scheduler decided should run.ld.w 0[sp],lp ; restore EIPSW from stackldsr lp,1ld.w 4[sp],lp ; restore EIPC from stackldsr lp,0ld.w 8[sp],lp ; restore LP from stackadd 0x0C,sp ; set SP to right positionRETI;------------------------------------------------------------------------------;------------------------------------------------------------------------------; Perform the necessary steps of the Tick Count Increment and Task Switch; depending on the chosen kernel configuration;; Input: NONE;; Call: ISR;; Output: NONE;------------------------------------------------------------------------------#if configUSE_PREEMPTION == 1 ; use preemptive kernel modeMD_INTTM0EQ0:add -0x0C,sp ; prepare stack to save necessary valuesst.w lp,8[sp] ; store LP to stackstsr 0,r31st.w lp,4[sp] ; store EIPC to stackstsr 1,lpst.w lp,0[sp] ; store EIPSW to stackportSAVE_CONTEXT ; Save the context of the current task.jarl vTaskIncrementTick,lp ; Call the timer tick function.jarl vTaskSwitchContext,lp ; Call the scheduler.portRESTORE_CONTEXT ; Restore the context of whichever task the ...; ... scheduler decided should run.ld.w 0[sp],lp ; restore EIPSW from stackldsr lp,1ld.w 4[sp],lp ; restore EIPC from stackldsr lp,0ld.w 8[sp],lp ; restore LP from stackadd 0x0C,sp ; set SP to right positionRETI;------------------------------------------------------------------------------#else ; use cooperative kernel modeMD_INTTM0EQ0:prepare {lp,ep},8,spsst.w r1,4[ep]sst.w r5,0[ep]jarl vTaskIncrementTick,lp ; Call the timer tick function.sld.w 0[ep],r5sld.w 4[ep],r1dispose 8,{lp,ep}RETI#endif /* configUSE_PREEMPTION */;------------------------------------------------------------------------------COMMON INTVEC:CODE:ROOT(2)ORG 544`??MD_INTTM0EQ0??INTVEC 544`:JR MD_INTTM0EQ0RSEG NEAR_ID:CONST:SORT:NOROOT(2)`?<Initializer for usCriticalNesting>`:DW 10COMMON INTVEC:CODE:ROOT(2)ORG 40H`??vPortYield??INTVEC 40`:JR vPortYield;------------------------------------------------------------------------------; set microcontroller security IDCOMMON INTVEC:CODE:ROOT(2)ORG 70H`SECUID`:DB CG_SECURITY0DB CG_SECURITY1DB CG_SECURITY2DB CG_SECURITY3DB CG_SECURITY4DB CG_SECURITY5DB CG_SECURITY6DB CG_SECURITY7DB CG_SECURITY8DB CG_SECURITY9; set microcontroller Option bytesCOMMON INTVEC:CODE:ROOT(2)ORG 122`OPTBYTES`:DB 0xFDDB 0xFFDB 0xFFDB 0xFFDB 0xFFDB 0xFF#if configOCD_USAGE == 1COMMON INTVEC:CODE:ROOT(4)ORG 0x230PUBLIC ROM_INT2ROM_INT2:DB 0xff, 0xff, 0xff, 0xffDB 0xff, 0xff, 0xff, 0xffDB 0xff, 0xff, 0xff, 0xffDB 0xff, 0xff, 0xff, 0xffCOMMON INTVEC:CODE:ROOT(4)ORG 0x60PUBLIC ROM_INTROM_INT:DB 0xff, 0xff, 0xff, 0xffDB 0xff, 0xff, 0xff, 0xffDB 0xff, 0xff, 0xff, 0xffDB 0xff, 0xff, 0xff, 0xff#endif /* configOCD_USAGE */END
