2 * FreeRTOS Kernel V10.0.0
\r
3 * Copyright (C) 2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.
\r
5 * Permission is hereby granted, free of charge, to any person obtaining a copy of
\r
6 * this software and associated documentation files (the "Software"), to deal in
\r
7 * the Software without restriction, including without limitation the rights to
\r
8 * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
\r
9 * the Software, and to permit persons to whom the Software is furnished to do so,
\r
10 * subject to the following conditions:
\r
12 * The above copyright notice and this permission notice shall be included in all
\r
13 * copies or substantial portions of the Software. If you wish to use our Amazon
\r
14 * FreeRTOS name, please do so in a fair use way that does not cause confusion.
\r
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
\r
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
\r
18 * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
\r
19 * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
\r
20 * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
\r
21 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
\r
23 * http://www.FreeRTOS.org
\r
24 * http://aws.amazon.com/freertos
\r
26 * 1 tab == 4 spaces!
\r
30 * Purpose: Lowest level routines for all ColdFire processors.
\r
34 * ulPortSetIPL() and mcf5xxx_wr_cacr() copied with permission from FreeScale
\r
35 * supplied source files.
\r
38 .global ulPortSetIPL
\r
39 .global _ulPortSetIPL
\r
40 .global mcf5xxx_wr_cacrx
\r
41 .global _mcf5xxx_wr_cacrx
\r
42 .global vPortYieldISR
\r
43 .global _vPortYieldISR
\r
44 .global vPortStartFirstTask
\r
45 .global _vPortStartFirstTask
\r
46 .extern _pxCurrentTCB
\r
47 .extern _vPortYieldHandler
\r
51 .macro portSAVE_CONTEXT
\r
55 move.l _pxCurrentTCB, a0
\r
60 .macro portRESTORE_CONTEXT
\r
62 move.l _pxCurrentTCB, a0
\r
70 /********************************************************************/
\r
72 * This routines changes the IPL to the value passed into the routine.
\r
73 * It also returns the old IPL value back.
\r
74 * Calling convention from C:
\r
75 * old_ipl = asm_set_ipl(new_ipl);
\r
76 * For the Diab Data C compiler, it passes return value thru D0.
\r
77 * Note that only the least significant three bits of the passed
\r
86 move.w SR,D7 /* current sr */
\r
88 move.l D7,D0 /* prepare return value */
\r
89 andi.l #0x0700,D0 /* mask out IPL */
\r
90 lsr.l #8,D0 /* IPL */
\r
92 move.l 8(A6),D6 /* get argument */
\r
93 andi.l #0x07,D6 /* least significant three bits */
\r
94 lsl.l #8,D6 /* move over to make mask */
\r
96 andi.l #0x0000F8FF,D7 /* zero out current IPL */
\r
97 or.l D6,D7 /* place new IPL in sr */
\r
104 /********************************************************************/
\r
109 .long 0x4e7b0002 /* movec d0,cacr */
\r
113 /********************************************************************/
\r
115 /* Yield interrupt. */
\r
119 jsr _vPortYieldHandler
\r
120 portRESTORE_CONTEXT
\r
122 /********************************************************************/
\r
125 vPortStartFirstTask:
\r
126 _vPortStartFirstTask:
\r
127 portRESTORE_CONTEXT
\r