]> git.sur5r.net Git - freertos/blob - FreeRTOS/Source/portable/GCC/RL78/isr_support.h
Update version number in readiness for V10.3.0 release. Sync SVN with reviewed releas...
[freertos] / FreeRTOS / Source / portable / GCC / RL78 / isr_support.h
1 /*\r
2  * FreeRTOS Kernel V10.3.0\r
3  * Copyright (C) 2020 Amazon.com, Inc. or its affiliates.  All Rights Reserved.\r
4  *\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
11  *\r
12  * The above copyright notice and this permission notice shall be included in all\r
13  * copies or substantial portions of the Software.\r
14  *\r
15  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r
16  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\r
17  * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\r
18  * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\r
19  * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\r
20  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\r
21  *\r
22  * http://www.FreeRTOS.org\r
23  * http://aws.amazon.com/freertos\r
24  *\r
25  * 1 tab == 4 spaces!\r
26  */\r
27 \r
28 /* Variables used by scheduler */\r
29         .extern    _pxCurrentTCB\r
30         .extern    _usCriticalNesting\r
31 \r
32 /*\r
33  * portSAVE_CONTEXT MACRO\r
34  * Saves the context of the general purpose registers, CS and ES (only in far\r
35  * memory mode) registers the usCriticalNesting Value and the Stack Pointer\r
36  * of the active Task onto the task stack\r
37  */\r
38         .macro portSAVE_CONTEXT\r
39 \r
40         SEL     RB0\r
41 \r
42         /* Save AX Register to stack. */\r
43         PUSH    AX\r
44         PUSH    HL\r
45         /* Save CS register. */\r
46         MOV     A, CS\r
47         XCH             A, X\r
48         /* Save ES register. */\r
49         MOV             A, ES\r
50         PUSH    AX\r
51         /* Save the remaining general purpose registers from bank 0. */\r
52         PUSH    DE\r
53         PUSH    BC\r
54         /* Save the other register banks - only necessary in the GCC port. */\r
55         SEL             RB1\r
56         PUSH    AX\r
57         PUSH    BC\r
58         PUSH    DE\r
59         PUSH    HL\r
60         SEL             RB2\r
61         PUSH    AX\r
62         PUSH    BC\r
63         PUSH    DE\r
64         PUSH    HL\r
65         /* Registers in bank 3 are for ISR use only so don't need saving. */\r
66         SEL             RB0\r
67         /* Save the usCriticalNesting value. */\r
68         MOVW    AX, !_usCriticalNesting\r
69         PUSH    AX\r
70         /* Save the Stack pointer. */\r
71         MOVW    AX, !_pxCurrentTCB\r
72         MOVW    HL, AX\r
73         MOVW    AX, SP\r
74         MOVW    [HL], AX\r
75         /* Switch stack pointers. */\r
76         movw sp,#_stack /* Set stack pointer */\r
77 \r
78         .endm\r
79 \r
80 \r
81 /*\r
82  * portRESTORE_CONTEXT MACRO\r
83  * Restores the task Stack Pointer then use this to restore usCriticalNesting,\r
84  * general purpose registers and the CS and ES (only in far memory mode)\r
85  * of the selected task from the task stack\r
86  */\r
87 .macro portRESTORE_CONTEXT MACRO\r
88         SEL             RB0\r
89         /* Restore the Stack pointer. */\r
90         MOVW    AX, !_pxCurrentTCB\r
91         MOVW    HL, AX\r
92         MOVW    AX, [HL]\r
93         MOVW    SP, AX\r
94         /* Restore usCriticalNesting value. */\r
95         POP             AX\r
96         MOVW    !_usCriticalNesting, AX\r
97         /* Restore the alternative register banks - only necessary in the GCC\r
98         port.  Register bank 3 is dedicated for interrupts use so is not saved or\r
99         restored. */\r
100         SEL             RB2\r
101         POP             HL\r
102         POP             DE\r
103         POP             BC\r
104         POP             AX\r
105         SEL             RB1\r
106         POP             HL\r
107         POP             DE\r
108         POP             BC\r
109         POP             AX\r
110         SEL             RB0\r
111         /* Restore the necessary general purpose registers. */\r
112         POP             BC\r
113         POP             DE\r
114         /* Restore the ES register. */\r
115         POP             AX\r
116         MOV             ES, A\r
117         /* Restore the CS register. */\r
118         XCH             A, X\r
119         MOV             CS, A\r
120         /* Restore general purpose register HL. */\r
121         POP             HL\r
122         /* Restore AX. */\r
123         POP             AX\r
124 \r
125         .endm\r
126 \r