2 * arch/xtensa/kernel/coprocessor.S
4 * Xtensa processor configuration-specific table of coprocessor and
5 * other custom register layout information.
7 * This file is subject to the terms and conditions of the GNU General Public
8 * License. See the file "COPYING" in the main directory of this archive
11 * Copyright (C) 2003 - 2007 Tensilica Inc.
15 #include <linux/linkage.h>
16 #include <asm/asm-offsets.h>
17 #include <asm/asmmacro.h>
18 #include <asm/coprocessor.h>
19 #include <asm/current.h>
22 #if XTENSA_HAVE_COPROCESSORS
25 * Macros for lazy context switch.
28 #define SAVE_CP_REGS(x) \
29 .if XTENSA_HAVE_COPROCESSOR(x); \
31 .Lsave_cp_regs_cp##x: \
32 xchal_cp##x##_store a2 a4 a5 a6 a7; \
36 #define SAVE_CP_REGS_TAB(x) \
37 .if XTENSA_HAVE_COPROCESSOR(x); \
38 .long .Lsave_cp_regs_cp##x; \
42 .long THREAD_XTREGS_CP##x
45 #define LOAD_CP_REGS(x) \
46 .if XTENSA_HAVE_COPROCESSOR(x); \
48 .Lload_cp_regs_cp##x: \
49 xchal_cp##x##_load a2 a4 a5 a6 a7; \
53 #define LOAD_CP_REGS_TAB(x) \
54 .if XTENSA_HAVE_COPROCESSOR(x); \
55 .long .Lload_cp_regs_cp##x; \
59 .long THREAD_XTREGS_CP##x
82 .Lsave_cp_regs_jump_table:
92 .Lload_cp_regs_jump_table:
103 * coprocessor_flush(struct thread_info*, index)
106 * Save coprocessor registers for coprocessor 'index'.
107 * The register values are saved to or loaded from the coprocessor area
108 * inside the task_info structure.
110 * Note that this function doesn't update the coprocessor_owner information!
114 ENTRY(coprocessor_flush)
116 /* reserve 4 bytes on stack to save a0 */
120 movi a0, .Lsave_cp_regs_jump_table
131 ENDPROC(coprocessor_flush)
136 * a0: trashed, original value saved on stack (PT_AREG0)
138 * a2: new stack pointer, original in DEPC
140 * depc: a2, original value saved on stack (PT_DEPC)
141 * excsave_1: dispatch table
143 * PT_DEPC >= VALID_DOUBLE_EXCEPTION_ADDRESS: double exception, DEPC
144 * < VALID_DOUBLE_EXCEPTION_ADDRESS: regular exception
147 ENTRY(fast_coprocessor)
149 /* Save remaining registers a1-a3 and SAR */
151 s32i a3, a2, PT_AREG3
153 s32i a1, a2, PT_AREG1
157 s32i a2, a1, PT_AREG2
160 * The hal macros require up to 4 temporary registers. We use a3..a6.
163 s32i a4, a1, PT_AREG4
164 s32i a5, a1, PT_AREG5
165 s32i a6, a1, PT_AREG6
167 /* Find coprocessor number. Subtract first CP EXCCAUSE from EXCCAUSE */
170 addi a3, a3, -EXCCAUSE_COPROCESSOR0_DISABLED
172 /* Set corresponding CPENABLE bit -> (sar:cp-index, a3: 1<<cp-index)*/
174 ssl a3 # SAR: 32 - coprocessor_number
182 /* Retrieve previous owner. (a3 still holds CP number) */
184 movi a0, coprocessor_owner # list of owners
185 addx4 a0, a3, a0 # entry for CP
188 beqz a4, 1f # skip 'save' if no previous owner
190 /* Disable coprocessor for previous owner. (a2 = 1 << CP number) */
192 l32i a5, a4, THREAD_CPENABLE
193 xor a5, a5, a2 # (1 << cp-id) still in a2
194 s32i a5, a4, THREAD_CPENABLE
197 * Get context save area and 'call' save routine.
198 * (a4 still holds previous owner (thread_info), a3 CP number)
201 movi a5, .Lsave_cp_regs_jump_table
202 movi a0, 2f # a0: 'return' address
203 addx8 a3, a3, a5 # a3: coprocessor number
204 l32i a2, a3, 4 # a2: xtregs offset
205 l32i a3, a3, 0 # a3: jump address
209 /* Note that only a0 and a1 were preserved. */
212 addi a3, a3, -EXCCAUSE_COPROCESSOR0_DISABLED
213 movi a0, coprocessor_owner
216 /* Set new 'owner' (a0 points to the CP owner, a3 contains the CP nr) */
218 1: GET_THREAD_INFO (a4, a1)
221 /* Get context save area and 'call' load routine. */
223 movi a5, .Lload_cp_regs_jump_table
226 l32i a2, a3, 4 # a2: xtregs offset
227 l32i a3, a3, 0 # a3: jump address
231 /* Restore all registers and return from exception handler. */
233 1: l32i a6, a1, PT_AREG6
234 l32i a5, a1, PT_AREG5
235 l32i a4, a1, PT_AREG4
238 l32i a3, a1, PT_AREG3
239 l32i a2, a1, PT_AREG2
241 l32i a0, a1, PT_AREG0
242 l32i a1, a1, PT_AREG1
246 ENDPROC(fast_coprocessor)
250 ENTRY(coprocessor_owner)
252 .fill XCHAL_CP_MAX, 4, 0
254 END(coprocessor_owner)
256 #endif /* XTENSA_HAVE_COPROCESSORS */