3 * This file is subject to the terms and conditions of the GNU General Public
4 * License. See the file "COPYING" in the main directory of this archive
7 * Copyright (C) 2000 Hewlett Packard (Paul Bame bame@puffin.external.hp.com)
12 #include <asm/assembly.h>
14 #include <linux/linkage.h>
15 #include <linux/init.h>
33 #define N_SAVED_REGS 9
36 .block REG_SZ * N_SAVED_REGS
40 /************************ 32-bit real-mode calls ***********************/
41 /* This can be called in both narrow and wide kernels */
45 /* unsigned long real32_call_asm(unsigned int *sp,
46 * unsigned int *arg0p,
47 * unsigned int iodc_fn)
48 * sp is value of stack pointer to adopt before calling PDC (virt)
49 * arg0p points to where saved arg values may be found
50 * iodc_fn is the IODC function to call
53 ENTRY(real32_call_asm)
54 STREG %rp, -RP_OFFSET(%sp) /* save RP */
57 ldo 2*REG_SZ(%sp), %sp /* room for a couple more saves */
58 STREG %r27, -1*REG_SZ(%sp)
59 STREG %r29, -2*REG_SZ(%sp)
61 STREG %sp, -REG_SZ(%arg0) /* save SP on real-mode stack */
62 copy %arg0, %sp /* adopt the real-mode SP */
67 /* load up the arg registers from the saved arg area */
68 /* 32-bit calling convention passes first 4 args in registers */
69 ldw 0(%arg1), %arg0 /* note overwriting arg0 */
72 ldw -4(%arg1), %arg1 /* obviously must do this one last! */
79 b,l save_control_regs,%r2 /* modifies r1, r2, r28 */
83 rsm PSW_SM_W, %r0 /* go narrow */
86 load32 PA(ric_ret), %r2
91 ssm PSW_SM_W, %r0 /* go wide */
93 /* restore CRs before going virtual in case we page fault */
94 b,l restore_control_regs, %r2 /* modifies r1, r2, r26 */
101 LDREG -REG_SZ(%sp), %sp /* restore SP */
103 LDREG -1*REG_SZ(%sp), %r27
104 LDREG -2*REG_SZ(%sp), %r29
105 ldo -2*REG_SZ(%sp), %sp
108 LDREG -RP_OFFSET(%sp), %rp /* restore RP */
111 ENDPROC(real32_call_asm)
114 # define PUSH_CR(r, where) mfctl r, %r1 ! STREG,ma %r1, REG_SZ(where)
115 # define POP_CR(r, where) LDREG,mb -REG_SZ(where), %r1 ! mtctl %r1, r
119 load32 PA(save_cr_space), %r28
132 restore_control_regs:
133 load32 PA(save_cr_end), %r26
146 /* rfi_virt2real() and rfi_real2virt() could perhaps be adapted for
147 * more general-purpose use by the several places which need RFIs
152 /* switch to real mode... */
154 load32 PA(rfi_v2r_1), %r1
161 rsm PSW_SM_Q,%r0 /* disable Q & I bits to load iia queue */
162 mtctl %r0, %cr17 /* Clear IIASQ tail */
163 mtctl %r0, %cr17 /* Clear IIASQ head */
164 mtctl %r1, %cr18 /* IIAOQ head */
166 mtctl %r1, %cr18 /* IIAOQ tail */
167 load32 REAL_MODE_PSW, %r1
188 load32 (rfi_r2v_1), %r1
195 rsm PSW_SM_Q,%r0 /* disable Q bit to load iia queue */
196 mtctl %r0, %cr17 /* Clear IIASQ tail */
197 mtctl %r0, %cr17 /* Clear IIASQ head */
198 mtctl %r1, %cr18 /* IIAOQ head */
200 mtctl %r1, %cr18 /* IIAOQ tail */
201 load32 KERNEL_PSW, %r1
220 /************************ 64-bit real-mode calls ***********************/
221 /* This is only usable in wide kernels right now and will probably stay so */
223 /* unsigned long real64_call_asm(unsigned long *sp,
224 * unsigned long *arg0p,
226 * sp is value of stack pointer to adopt before calling PDC (virt)
227 * arg0p points to where saved arg values may be found
228 * iodc_fn is the IODC function to call
230 ENTRY(real64_call_asm)
231 std %rp, -0x10(%sp) /* save RP */
232 std %sp, -8(%arg0) /* save SP on real-mode stack */
233 copy %arg0, %sp /* adopt the real-mode SP */
238 /* set up the new ap */
241 /* load up the arg registers from the saved arg area */
242 /* 32-bit calling convention passes first 4 args in registers */
243 ldd 0*REG_SZ(%arg1), %arg0 /* note overwriting arg0 */
244 ldd 2*REG_SZ(%arg1), %arg2
245 ldd 3*REG_SZ(%arg1), %arg3
246 ldd 4*REG_SZ(%arg1), %r22
247 ldd 5*REG_SZ(%arg1), %r21
248 ldd 6*REG_SZ(%arg1), %r20
249 ldd 7*REG_SZ(%arg1), %r19
250 ldd 1*REG_SZ(%arg1), %arg1 /* do this one last! */
254 b,l rfi_virt2real,%r2
257 b,l save_control_regs,%r2 /* modifies r1, r2, r28 */
260 load32 PA(r64_ret), %r2
264 /* restore CRs before going virtual in case we page fault */
265 b,l restore_control_regs, %r2 /* modifies r1, r2, r26 */
268 b,l rfi_real2virt,%r2
272 ldd -8(%sp), %sp /* restore SP */
273 ldd -0x10(%sp), %rp /* restore RP */
276 ENDPROC(real64_call_asm)
281 /* http://lists.parisc-linux.org/hypermail/parisc-linux/10916.html
282 ** GCC 3.3 and later has a new function in libgcc.a for
283 ** comparing function pointers.
285 ENTRY(__canonicalize_funcptr_for_compare)
292 ENDPROC(__canonicalize_funcptr_for_compare)