source: rtems/c/src/exec/score/cpu/m68k/cpu_asm.s @ 38ffa0c

4.104.114.84.95
Last change on this file since 38ffa0c was 38ffa0c, checked in by Joel Sherrill <joel.sherrill@…>, on 09/19/95 at 18:32:18

Incorporated the submission from John S. Gwynne
<jsg@…> of the rest of the 68000-ish support
for interrupt handling and bfffo support, the two BSPs he submitted
(efi68k and efi332), and SGI Irix 5.3 host support.

  • Property mode set to 100644
File size: 8.8 KB
Line 
1/*  cpu_asm.s
2 *
3 *  This file contains all assembly code for the MC68020 implementation
4 *  of RTEMS.
5 *
6 *  COPYRIGHT (c) 1989, 1990, 1991, 1992, 1993, 1994.
7 *  On-Line Applications Research Corporation (OAR).
8 *  All rights assigned to U.S. Government, 1994.
9 *
10 *  This material may be reproduced by or for the U.S. Government pursuant
11 *  to the copyright license under the clause at DFARS 252.227-7013.  This
12 *  notice must appear in all copies of this file and its derivatives.
13 *
14 *  $Id$
15 */
16
17
18#include <asm.h>
19
20        .text
21
22/*  void _CPU_Context_switch( run_context, heir_context )
23 *
24 *  This routine performs a normal non-FP context.
25 */
26
27        .align  4
28        .global SYM (_CPU_Context_switch)
29
30.set RUNCONTEXT_ARG,   4                   | save context argument
31.set HEIRCONTEXT_ARG,  8                   | restore context argument
32
33SYM (_CPU_Context_switch):
34          moval    a7@(RUNCONTEXT_ARG),a0| a0 = running thread context
35          movw     sr,d1                 | d1 = status register
36          movml    d1-d7/a2-a7,a0@       | save context
37
38          moval    a7@(HEIRCONTEXT_ARG),a0| a0 = heir thread context
39restore:  movml    a0@,d1-d7/a2-a7     | restore context
40          movw     d1,sr                  | restore status register
41          rts
42
43/*PAGE
44 *  void __CPU_Context_save_fp_context( &fp_context_ptr )
45 *  void __CPU_Context_restore_fp_context( &fp_context_ptr )
46 *
47 *  These routines are used to context switch a MC68881 or MC68882.
48 *
49 *  NOTE:  Context save and restore code is based upon the code shown
50 *         on page 6-38 of the MC68881/68882 Users Manual (rev 1).
51 *
52 *         CPU_FP_CONTEXT_SIZE is higher than expected to account for the
53 *         -1 pushed at end of this sequence.
54 */
55
56.set FPCONTEXT_ARG,   4                    | save FP context argument
57
58        .align  4
59        .global SYM (_CPU_Context_save_fp)
60SYM (_CPU_Context_save_fp):
61#if ( M68K_HAS_FPU == 1 )
62        moval    a7@(FPCONTEXT_ARG),a1   | a1 = &ptr to context area
63        moval    a1@,a0                  | a0 = Save context area
64        fsave    a0@-                     | save 68881/68882 state frame
65        tstb     a0@                      | check for a null frame
66        beq      nosv                      | Yes, skip save of user model
67        fmovem   fp0-fp7,a0@-           | save data registers (fp0-fp7)
68        fmovem   fpc/fps/fpi,a0@-      | and save control registers
69        movl     #-1,a0@-                 | place not-null flag on stack
70nosv:   movl     a0,a1@                  | save pointer to saved context
71#endif
72        rts
73
74        .align  4
75        .global SYM (_CPU_Context_restore_fp)
76SYM (_CPU_Context_restore_fp):
77#if ( M68K_HAS_FPU == 1 )
78        moval    a7@(FPCONTEXT_ARG),a1   | a1 = &ptr to context area
79        moval    a1@,a0                  | a0 = address of saved context
80        tstb     a0@                      | Null context frame?
81        beq      norst                     | Yes, skip fp restore
82        addql    #4,a0                    | throwaway non-null flag
83        fmovem   a0@+,fpc/fps/fpi      | restore control registers
84        fmovem   a0@+,fp0-fp7           | restore data regs (fp0-fp7)
85norst:  frestore a0@+                     | restore the fp state frame
86        movl     a0,a1@                  | save pointer to saved context
87#endif
88        rts
89
90/*PAGE
91 *  void _ISR_Handler()
92 *
93 *  This routine provides the RTEMS interrupt management.
94 *
95 *  NOTE:
96 *    Upon entry, the master stack will contain an interrupt stack frame
97 *    back to the interrupted thread and the interrupt stack will contain
98 *    a throwaway interrupt stack frame.  If dispatching is enabled, this
99 *    is the outer most interrupt, and (a context switch is necessary or
100 *    the current thread has signals), then set up the master stack to
101 *    transfer control to the interrupt dispatcher.
102 */
103
104/*  m68000 notes:
105 *
106 *  with this approach, lower interrupts (1-5 for efi68k) may
107 *  execute twice if a higher priority interrupt is
108 *  acknowledged before _Thread_Dispatch_disable is
109 *  increamented and the higher priority interrupt
110 *  preforms a context switch after executing. The lower
111 *  priority intterrupt will execute (1) at the end of the
112 *  higher priority interrupt in the new context if
113 *  permitted by the new interrupt level mask, and (2) when
114 *  the original context regains the cpu.
115 */
116 
117#if ( M68K_HAS_VBR == 1)
118.set SR_OFFSET,    0                     | Status register offset
119.set PC_OFFSET,    2                     | Program Counter offset
120.set FVO_OFFSET,   6                     | Format/vector offset
121#else
122.set JSR_OFFSET,   0                     | return address from jsr table
123.set SR_OFFSET,    4
124.set PC_OFFSET,    6
125#endif /* M68K_HAS_VBR */
126 
127.set SAVED,        16                    | space for saved registers
128
129        .align  4
130        .global SYM (_ISR_Handler)
131
132SYM (_ISR_Handler):
133        addql   #1,SYM (_ISR_Nest_level) | one nest level deeper
134        addql   #1,SYM (_Thread_Dispatch_disable_level) | disable multitasking
135        moveml  d0-d1/a0-a1,a7@-         | save d0-d1,a0-a1
136
137#if ( M68K_HAS_VBR == 0)
138        movel   a7@(SAVED+JSR_OFFSET),d0 | assume the exception table at 0x0000
139        addql   #6,d0                    | points to a jump table (jsr) in RAM
140        subl    #_VBR,d0                 | VBR is the location of the jump table
141        divs    #3,d0
142        lsll    #1,d0
143        extl    d0
144#else
145        movew   a7@(SAVED+FVO_OFFSET),d0 | d0 = F/VO
146        andl    #0x0fff,d0               | d0 = vector offset in vbr
147#endif
148
149#if ( M68K_HAS_PREINDEXING == 1 )
150        movel   @( SYM (_ISR_Vector_table),d0:w:1),a0| fetch the ISR
151#else
152        movel   # SYM (_ISR_Vector_table),a0   | a0 = base of RTEMS table
153        addal   d0,a0                    | a0 = address of vector
154        movel   (a0),a0                  | a0 = address of user routine
155#endif
156
157        lsrl    #2,d0                    | d0 = vector number
158        movel   d0,a7@-                  | push vector number
159        jbsr    a0@                      | invoke the user ISR
160        addql   #4,a7                    | remove vector number
161
162/*
163 *   The following entry should be unnecessary once the support is
164 *   in place to know what vector we got on a 68000 core.
165 */
166
167        .global SYM (_ISR_Exit)
168SYM (_ISR_Exit):
169
170        subql   #1,SYM (_ISR_Nest_level) | one less nest level
171        subql   #1,SYM (_Thread_Dispatch_disable_level)
172                                         | unnest multitasking
173        bne     exit                     | If dispatch disabled, exit
174
175#if ( M68K_HAS_SEPARATE_STACKS == 1 )
176        movew   #0xf000,d0               | isolate format nibble
177        andw    a7@(SAVED+FVO_OFFSET),d0 | get F/VO
178        cmpiw   #0x1000,d0               | is it a throwaway isf?
179        bne     exit                     | NOT outer level, so branch
180#endif
181
182        tstl    SYM (_Context_Switch_necessary)
183                                         | Is thread switch necessary?
184        bne     bframe                   | Yes, invoke dispatcher
185
186        tstl    SYM (_ISR_Signals_to_thread_executing)
187                                         | signals sent to Run_thread
188                                         |   while in interrupt handler?
189        beq     exit                     | No, then exit
190
191
192bframe: clrl    SYM (_ISR_Signals_to_thread_executing)
193                                         | If sent, will be processed
194#if ( M68K_HAS_SEPARATE_STACKS == 1 )
195        movec   msp,a0                   | a0 = master stack pointer
196        movew   #0,a0@-                  | push format word
197        movel   # SYM (_ISR_Dispatch),a0@- | push return addr
198        movew   a0@(6+SR_OFFSET),a0@-    | push thread sr
199        movec   a0,msp                   | set master stack pointer
200#else
201
202        movew   a7@(16+SR_OFFSET),sr
203        jsr     SYM (_Thread_Dispatch)
204
205#endif
206
207exit:   moveml  a7@+,d0-d1/a0-a1         | restore d0-d1,a0-a1
208#if ( M68K_HAS_VBR == 0)
209        addql   #4,a7                    | pop vector address
210#endif /* M68K_HAS_VBR */
211        rte                              | return to thread
212                                         |   OR _Isr_dispatch
213
214/*PAGE
215 *  void _ISR_Dispatch()
216 *
217 *  Entry point from the outermost interrupt service routine exit.
218 *  The current stack is the supervisor mode stack if this processor
219 *  has separate stacks.
220 *
221 *    1.  save all registers not preserved across C calls.
222 *    2.  invoke the _Thread_Dispatch routine to switch tasks
223 *        or a signal to the currently executing task.
224 *    3.  restore all registers not preserved across C calls.
225 *    4.  return from interrupt
226 */
227
228        .global SYM (_ISR_Dispatch)
229SYM (_ISR_Dispatch):
230        movml   d0-d1/a0-a1,a7@-
231        jsr     SYM (_Thread_Dispatch)
232        movml   a7@+,d0-d1/a0-a1
233#if ( M68K_HAS_VBR == 0)
234        addql   #4,a7                    | pop vector address
235#endif /* M68K_HAS_VBR */
236        rte
Note: See TracBrowser for help on using the repository browser.