]> git.sur5r.net Git - freertos/blob - FreeRTOS/Source/portable/GCC/ColdFire_V2/portasm.S
Update version number to 9.0.0rc2.
[freertos] / FreeRTOS / Source / portable / GCC / ColdFire_V2 / portasm.S
1 /*\r
2     FreeRTOS V9.0.0rc2 - Copyright (C) 2016 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     This file is part of the FreeRTOS distribution.\r
8 \r
9     FreeRTOS is free software; you can redistribute it and/or modify it under\r
10     the terms of the GNU General Public License (version 2) as published by the\r
11     Free Software Foundation >>>> AND MODIFIED BY <<<< the FreeRTOS exception.\r
12 \r
13     ***************************************************************************\r
14     >>!   NOTE: The modification to the GPL is included to allow you to     !<<\r
15     >>!   distribute a combined work that includes FreeRTOS without being   !<<\r
16     >>!   obliged to provide the source code for proprietary components     !<<\r
17     >>!   outside of the FreeRTOS kernel.                                   !<<\r
18     ***************************************************************************\r
19 \r
20     FreeRTOS is distributed in the hope that it will be useful, but WITHOUT ANY\r
21     WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS\r
22     FOR A PARTICULAR PURPOSE.  Full license text is available on the following\r
23     link: http://www.freertos.org/a00114.html\r
24 \r
25     ***************************************************************************\r
26      *                                                                       *\r
27      *    FreeRTOS provides completely free yet professionally developed,    *\r
28      *    robust, strictly quality controlled, supported, and cross          *\r
29      *    platform software that is more than just the market leader, it     *\r
30      *    is the industry's de facto standard.                               *\r
31      *                                                                       *\r
32      *    Help yourself get started quickly while simultaneously helping     *\r
33      *    to support the FreeRTOS project by purchasing a FreeRTOS           *\r
34      *    tutorial book, reference manual, or both:                          *\r
35      *    http://www.FreeRTOS.org/Documentation                              *\r
36      *                                                                       *\r
37     ***************************************************************************\r
38 \r
39     http://www.FreeRTOS.org/FAQHelp.html - Having a problem?  Start by reading\r
40     the FAQ page "My application does not run, what could be wrong?".  Have you\r
41     defined configASSERT()?\r
42 \r
43     http://www.FreeRTOS.org/support - In return for receiving this top quality\r
44     embedded software for free we request you assist our global community by\r
45     participating in the support forum.\r
46 \r
47     http://www.FreeRTOS.org/training - Investing in training allows your team to\r
48     be as productive as possible as early as possible.  Now you can receive\r
49     FreeRTOS training directly from Richard Barry, CEO of Real Time Engineers\r
50     Ltd, and the world's leading authority on the world's leading RTOS.\r
51 \r
52     http://www.FreeRTOS.org/plus - A selection of FreeRTOS ecosystem products,\r
53     including FreeRTOS+Trace - an indispensable productivity tool, a DOS\r
54     compatible FAT file system, and our tiny thread aware UDP/IP stack.\r
55 \r
56     http://www.FreeRTOS.org/labs - Where new FreeRTOS products go to incubate.\r
57     Come and try FreeRTOS+TCP, our new open source TCP/IP stack for FreeRTOS.\r
58 \r
59     http://www.OpenRTOS.com - Real Time Engineers ltd. license FreeRTOS to High\r
60     Integrity Systems ltd. to sell under the OpenRTOS brand.  Low cost OpenRTOS\r
61     licenses offer ticketed support, indemnification and commercial middleware.\r
62 \r
63     http://www.SafeRTOS.com - High Integrity Systems also provide a safety\r
64     engineered and independently SIL3 certified version for use in safety and\r
65     mission critical applications that require provable dependability.\r
66 \r
67     1 tab == 4 spaces!\r
68 */\r
69 \r
70 /*\r
71  * Purpose: Lowest level routines for all ColdFire processors.\r
72  *\r
73  * Notes:\r
74  * \r
75  * ulPortSetIPL() and mcf5xxx_wr_cacr() copied with permission from FreeScale\r
76  * supplied source files.\r
77  */\r
78 \r
79     .global ulPortSetIPL\r
80     .global mcf5xxx_wr_cacr\r
81     .global __cs3_isr_interrupt_80\r
82     .global vPortStartFirstTask\r
83 \r
84     .text\r
85 \r
86 .macro portSAVE_CONTEXT\r
87 \r
88         lea.l           (-60, %sp), %sp\r
89         movem.l         %d0-%fp, (%sp)\r
90         move.l          pxCurrentTCB, %a0\r
91         move.l          %sp, (%a0)\r
92 \r
93         .endm\r
94 \r
95 .macro portRESTORE_CONTEXT\r
96 \r
97         move.l          pxCurrentTCB, %a0\r
98         move.l          (%a0), %sp\r
99         movem.l         (%sp), %d0-%fp\r
100         lea.l           %sp@(60), %sp\r
101         rte\r
102 \r
103         .endm\r
104 \r
105 /********************************************************************/\r
106 /*\r
107  * This routines changes the IPL to the value passed into the routine.\r
108  * It also returns the old IPL value back.\r
109  * Calling convention from C:\r
110  *   old_ipl = asm_set_ipl(new_ipl);\r
111  * For the Diab Data C compiler, it passes return value thru D0.\r
112  * Note that only the least significant three bits of the passed\r
113  * value are used.\r
114  */\r
115 \r
116 ulPortSetIPL:\r
117     link    A6,#-8\r
118     movem.l D6-D7,(SP)\r
119 \r
120     move.w  SR,D7       /* current sr    */\r
121 \r
122     move.l  D7,D0       /* prepare return value  */\r
123     andi.l  #0x0700,D0  /* mask out IPL  */\r
124     lsr.l   #8,D0       /* IPL   */\r
125 \r
126     move.l  8(A6),D6    /* get argument  */\r
127     andi.l  #0x07,D6    /* least significant three bits  */\r
128     lsl.l   #8,D6       /* move over to make mask    */\r
129 \r
130     andi.l  #0x0000F8FF,D7  /* zero out current IPL  */\r
131     or.l    D6,D7           /* place new IPL in sr   */\r
132     move.w  D7,SR\r
133 \r
134     movem.l (SP),D6-D7\r
135     lea     8(SP),SP\r
136     unlk    A6\r
137     rts\r
138 /********************************************************************/\r
139 \r
140 mcf5xxx_wr_cacr:\r
141     move.l  4(sp),d0\r
142     .long   0x4e7b0002  /* movec d0,cacr   */\r
143     nop\r
144     rts\r
145 \r
146 /********************************************************************/\r
147 \r
148 /* Yield interrupt. */\r
149 __cs3_isr_interrupt_80:\r
150         portSAVE_CONTEXT\r
151         jsr vPortYieldHandler\r
152         portRESTORE_CONTEXT\r
153 \r
154 /********************************************************************/\r
155 \r
156 \r
157 vPortStartFirstTask:\r
158         portRESTORE_CONTEXT\r
159 \r
160     .end\r
161 \r
162 \r