2 * O32 interface for the 64 (or N32) ABI.
4 * Copyright (C) 2002, 2014 Maciej W. Rozycki
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
13 #include <asm/regdef.h>
15 /* O32 register size. */
17 /* Maximum number of arguments supported. Must be even! */
19 /* Number of static registers we save. */
21 /* Argument area frame size. */
22 #define O32_ARGSZ (O32_SZREG * O32_ARGC)
23 /* Static register save area frame size. */
24 #define O32_STATSZ (SZREG * O32_STATC)
25 /* Stack pointer register save area frame size. */
26 #define O32_SPSZ SZREG
27 /* Combined area frame size. */
28 #define O32_FRAMESZ (O32_ARGSZ + O32_SPSZ + O32_STATSZ)
29 /* Switched stack frame size. */
30 #define O32_NFRAMESZ (O32_ARGSZ + O32_SPSZ)
35 * O32 function call dispatcher, for interfacing 32-bit ROM routines.
37 * The standard 64 (N32) calling sequence is supported, with a0 holding
38 * a function pointer, a1 a pointer to the new stack to call the
39 * function with or 0 if no stack switching is requested, a2-a7 -- the
40 * function call's first six arguments, and the stack -- the remaining
41 * arguments (up to O32_ARGC, including a2-a7). Static registers, gp
42 * and fp are preserved, v0 holds the result. This code relies on the
43 * called o32 function for sp and ra restoration and this dispatcher has
44 * to be placed in a KSEGx (or KUSEG) address space. Any pointers
45 * passed have to point to addresses within one of these spaces as well.
47 NESTED(call_o32, O32_FRAMESZ, ra)
48 REG_SUBU sp,O32_FRAMESZ
50 REG_S ra,O32_FRAMESZ-1*SZREG(sp)
51 REG_S fp,O32_FRAMESZ-2*SZREG(sp)
52 REG_S gp,O32_FRAMESZ-3*SZREG(sp)
53 REG_S s7,O32_FRAMESZ-4*SZREG(sp)
54 REG_S s6,O32_FRAMESZ-5*SZREG(sp)
55 REG_S s5,O32_FRAMESZ-6*SZREG(sp)
56 REG_S s4,O32_FRAMESZ-7*SZREG(sp)
57 REG_S s3,O32_FRAMESZ-8*SZREG(sp)
58 REG_S s2,O32_FRAMESZ-9*SZREG(sp)
59 REG_S s1,O32_FRAMESZ-10*SZREG(sp)
60 REG_S s0,O32_FRAMESZ-11*SZREG(sp)
66 REG_SUBU fp,a1,O32_NFRAMESZ
68 REG_S sp,O32_NFRAMESZ-1*SZREG(fp)
77 PTR_LA t0,O32_FRAMESZ(sp)
78 PTR_LA t1,6*O32_SZREG(fp)
92 REG_L sp,O32_NFRAMESZ-1*SZREG(sp)
94 REG_L s0,O32_FRAMESZ-11*SZREG(sp)
95 REG_L s1,O32_FRAMESZ-10*SZREG(sp)
96 REG_L s2,O32_FRAMESZ-9*SZREG(sp)
97 REG_L s3,O32_FRAMESZ-8*SZREG(sp)
98 REG_L s4,O32_FRAMESZ-7*SZREG(sp)
99 REG_L s5,O32_FRAMESZ-6*SZREG(sp)
100 REG_L s6,O32_FRAMESZ-5*SZREG(sp)
101 REG_L s7,O32_FRAMESZ-4*SZREG(sp)
102 REG_L gp,O32_FRAMESZ-3*SZREG(sp)
103 REG_L fp,O32_FRAMESZ-2*SZREG(sp)
104 REG_L ra,O32_FRAMESZ-1*SZREG(sp)
106 REG_ADDU sp,O32_FRAMESZ