[XTENSA] Clean up elf-gregset.
[deliverable/linux.git] / include / asm-xtensa / elf.h
CommitLineData
9a8fd558
CZ
1/*
2 * include/asm-xtensa/elf.h
3 *
4 * ELF register definitions
5 *
6 * This file is subject to the terms and conditions of the GNU General Public
7 * License. See the file "COPYING" in the main directory of this archive
8 * for more details.
9 *
10 * Copyright (C) 2001 - 2005 Tensilica Inc.
11 */
12
13#ifndef _XTENSA_ELF_H
14#define _XTENSA_ELF_H
15
16#include <asm/ptrace.h>
9a8fd558
CZ
17
18/* Xtensa processor ELF architecture-magic number */
19
20#define EM_XTENSA 94
21#define EM_XTENSA_OLD 0xABC7
22
ff6fd469
CZ
23/* Xtensa relocations defined by the ABIs */
24
25#define R_XTENSA_NONE 0
26#define R_XTENSA_32 1
27#define R_XTENSA_RTLD 2
28#define R_XTENSA_GLOB_DAT 3
29#define R_XTENSA_JMP_SLOT 4
30#define R_XTENSA_RELATIVE 5
31#define R_XTENSA_PLT 6
32#define R_XTENSA_OP0 8
33#define R_XTENSA_OP1 9
34#define R_XTENSA_OP2 10
35#define R_XTENSA_ASM_EXPAND 11
36#define R_XTENSA_ASM_SIMPLIFY 12
37#define R_XTENSA_GNU_VTINHERIT 15
38#define R_XTENSA_GNU_VTENTRY 16
39#define R_XTENSA_DIFF8 17
40#define R_XTENSA_DIFF16 18
41#define R_XTENSA_DIFF32 19
42#define R_XTENSA_SLOT0_OP 20
43#define R_XTENSA_SLOT1_OP 21
44#define R_XTENSA_SLOT2_OP 22
45#define R_XTENSA_SLOT3_OP 23
46#define R_XTENSA_SLOT4_OP 24
47#define R_XTENSA_SLOT5_OP 25
48#define R_XTENSA_SLOT6_OP 26
49#define R_XTENSA_SLOT7_OP 27
50#define R_XTENSA_SLOT8_OP 28
51#define R_XTENSA_SLOT9_OP 29
52#define R_XTENSA_SLOT10_OP 30
53#define R_XTENSA_SLOT11_OP 31
54#define R_XTENSA_SLOT12_OP 32
55#define R_XTENSA_SLOT13_OP 33
56#define R_XTENSA_SLOT14_OP 34
57#define R_XTENSA_SLOT0_ALT 35
58#define R_XTENSA_SLOT1_ALT 36
59#define R_XTENSA_SLOT2_ALT 37
60#define R_XTENSA_SLOT3_ALT 38
61#define R_XTENSA_SLOT4_ALT 39
62#define R_XTENSA_SLOT5_ALT 40
63#define R_XTENSA_SLOT6_ALT 41
64#define R_XTENSA_SLOT7_ALT 42
65#define R_XTENSA_SLOT8_ALT 43
66#define R_XTENSA_SLOT9_ALT 44
67#define R_XTENSA_SLOT10_ALT 45
68#define R_XTENSA_SLOT11_ALT 46
69#define R_XTENSA_SLOT12_ALT 47
70#define R_XTENSA_SLOT13_ALT 48
71#define R_XTENSA_SLOT14_ALT 49
72
9a8fd558
CZ
73/* ELF register definitions. This is needed for core dump support. */
74
9a8fd558
CZ
75typedef unsigned long elf_greg_t;
76
77typedef struct {
9a8fd558
CZ
78 elf_greg_t pc;
79 elf_greg_t ps;
9a8fd558
CZ
80 elf_greg_t lbeg;
81 elf_greg_t lend;
82 elf_greg_t lcount;
83 elf_greg_t sar;
8d7e8240
CZ
84 elf_greg_t windowstart;
85 elf_greg_t reserved[9+48];
86 elf_greg_t a[64];
9a8fd558
CZ
87} xtensa_gregset_t;
88
89#define ELF_NGREG (sizeof(xtensa_gregset_t) / sizeof(elf_greg_t))
90
91typedef elf_greg_t elf_gregset_t[ELF_NGREG];
92
8d7e8240 93#define ELF_NFPREG 18
9a8fd558
CZ
94
95typedef unsigned int elf_fpreg_t;
96typedef elf_fpreg_t elf_fpregset_t[ELF_NFPREG];
97
98#define ELF_CORE_COPY_REGS(_eregs, _pregs) \
99 xtensa_elf_core_copy_regs (&_eregs, _pregs);
100
101extern void xtensa_elf_core_copy_regs (xtensa_gregset_t *, struct pt_regs *);
102
103/*
104 * This is used to ensure we don't load something for the wrong architecture.
105 */
106
107#define elf_check_arch(x) ( ( (x)->e_machine == EM_XTENSA ) || \
108 ( (x)->e_machine == EM_XTENSA_OLD ) )
109
110/*
111 * These are used to set parameters in the core dumps.
112 */
113
114#ifdef __XTENSA_EL__
115# define ELF_DATA ELFDATA2LSB
116#elif defined(__XTENSA_EB__)
117# define ELF_DATA ELFDATA2MSB
118#else
119# error processor byte order undefined!
120#endif
121
122#define ELF_CLASS ELFCLASS32
123#define ELF_ARCH EM_XTENSA
124
125#define USE_ELF_CORE_DUMP
126#define ELF_EXEC_PAGESIZE PAGE_SIZE
127
128/*
129 * This is the location that an ET_DYN program is loaded if exec'ed. Typical
130 * use of this is to invoke "./ld.so someprog" to test out a new version of
131 * the loader. We need to make sure that it is out of the way of the program
132 * that it will "exec", and that there is sufficient room for the brk.
133 */
134
135#define ELF_ET_DYN_BASE (2 * TASK_SIZE / 3)
136
137/*
138 * This yields a mask that user programs can use to figure out what
139 * instruction set this CPU supports. This could be done in user space,
140 * but it's not easy, and we've already done it here.
141 */
142
143#define ELF_HWCAP (0)
144
145/*
146 * This yields a string that ld.so will use to load implementation
147 * specific libraries for optimization. This is more specific in
148 * intent than poking at uname or /proc/cpuinfo.
149 * For the moment, we have only optimizations for the Intel generations,
150 * but that could change...
151 */
152
153#define ELF_PLATFORM (NULL)
154
155/*
156 * The Xtensa processor ABI says that when the program starts, a2
157 * contains a pointer to a function which might be registered using
158 * `atexit'. This provides a mean for the dynamic linker to call
159 * DT_FINI functions for shared libraries that have been loaded before
160 * the code runs.
161 *
162 * A value of 0 tells we have no such handler.
163 *
164 * We might as well make sure everything else is cleared too (except
165 * for the stack pointer in a1), just to make things more
166 * deterministic. Also, clearing a0 terminates debugger backtraces.
167 */
168
169#define ELF_PLAT_INIT(_r, load_addr) \
170 do { _r->areg[0]=0; /*_r->areg[1]=0;*/ _r->areg[2]=0; _r->areg[3]=0; \
171 _r->areg[4]=0; _r->areg[5]=0; _r->areg[6]=0; _r->areg[7]=0; \
172 _r->areg[8]=0; _r->areg[9]=0; _r->areg[10]=0; _r->areg[11]=0; \
173 _r->areg[12]=0; _r->areg[13]=0; _r->areg[14]=0; _r->areg[15]=0; \
174 } while (0)
175
9a8fd558
CZ
176#define SET_PERSONALITY(ex, ibcs2) set_personality(PER_LINUX_32BIT)
177
8c65b4a6
TS
178struct task_struct;
179
9a8fd558
CZ
180extern void do_copy_regs (xtensa_gregset_t*, struct pt_regs*,
181 struct task_struct*);
182extern void do_restore_regs (xtensa_gregset_t*, struct pt_regs*,
183 struct task_struct*);
184extern void do_save_fpregs (elf_fpregset_t*, struct pt_regs*,
185 struct task_struct*);
186extern int do_restore_fpregs (elf_fpregset_t*, struct pt_regs*,
187 struct task_struct*);
188
9a8fd558 189#endif /* _XTENSA_ELF_H */
This page took 0.288598 seconds and 5 git commands to generate.