1 /* $Id: elf.h,v 1.32 2002/02/09 19:49:31 davem Exp $ */
2 #ifndef __ASM_SPARC64_ELF_H
3 #define __ASM_SPARC64_ELF_H
6 * ELF register definitions..
9 #include <asm/ptrace.h>
11 #include <asm/processor.h>
12 #include <asm/uaccess.h>
13 #include <asm/spitfire.h>
19 #define STT_REGISTER 13
22 * Sparc ELF relocation types
24 #define R_SPARC_NONE 0
28 #define R_SPARC_DISP8 4
29 #define R_SPARC_DISP16 5
30 #define R_SPARC_DISP32 6
31 #define R_SPARC_WDISP30 7
32 #define R_SPARC_WDISP22 8
33 #define R_SPARC_HI22 9
36 #define R_SPARC_LO10 12
37 #define R_SPARC_GOT10 13
38 #define R_SPARC_GOT13 14
39 #define R_SPARC_GOT22 15
40 #define R_SPARC_PC10 16
41 #define R_SPARC_PC22 17
42 #define R_SPARC_WPLT30 18
43 #define R_SPARC_COPY 19
44 #define R_SPARC_GLOB_DAT 20
45 #define R_SPARC_JMP_SLOT 21
46 #define R_SPARC_RELATIVE 22
47 #define R_SPARC_UA32 23
48 #define R_SPARC_PLT32 24
49 #define R_SPARC_HIPLT22 25
50 #define R_SPARC_LOPLT10 26
51 #define R_SPARC_PCPLT32 27
52 #define R_SPARC_PCPLT22 28
53 #define R_SPARC_PCPLT10 29
57 #define R_SPARC_OLO10 33
58 #define R_SPARC_WDISP16 40
59 #define R_SPARC_WDISP19 41
64 /* Bits present in AT_HWCAP, primarily for Sparc32. */
66 #define HWCAP_SPARC_FLUSH 1 /* CPU supports flush instruction. */
67 #define HWCAP_SPARC_STBAR 2
68 #define HWCAP_SPARC_SWAP 4
69 #define HWCAP_SPARC_MULDIV 8
70 #define HWCAP_SPARC_V9 16
71 #define HWCAP_SPARC_ULTRA3 32
72 #define HWCAP_SPARC_BLKINIT 64
73 #define HWCAP_SPARC_N2 128
76 * These are used to set parameters in the core dumps.
79 #define ELF_ARCH EM_SPARCV9
80 #define ELF_CLASS ELFCLASS64
81 #define ELF_DATA ELFDATA2MSB
83 typedef unsigned long elf_greg_t
;
86 typedef elf_greg_t elf_gregset_t
[ELF_NGREG
];
87 /* Format of 64-bit elf_gregset_t is:
97 #define ELF_CORE_COPY_REGS(__elf_regs, __pt_regs) \
98 do { unsigned long *dest = &(__elf_regs[0]); \
99 struct pt_regs *src = (__pt_regs); \
100 unsigned long __user *sp; \
102 for(i = 0; i < 16; i++) \
103 dest[i] = src->u_regs[i]; \
104 /* Don't try this at home kids... */ \
105 sp = (unsigned long __user *) \
106 ((src->u_regs[14] + STACK_BIAS) \
107 & 0xfffffffffffffff8UL); \
108 for(i = 0; i < 16; i++) \
109 __get_user(dest[i+16], &sp[i]); \
110 dest[32] = src->tstate; \
111 dest[33] = src->tpc; \
112 dest[34] = src->tnpc; \
117 unsigned long pr_regs
[32];
118 unsigned long pr_fsr
;
119 unsigned long pr_gsr
;
120 unsigned long pr_fprs
;
124 #define ELF_CORE_COPY_TASK_REGS(__tsk, __elf_regs) \
125 ({ ELF_CORE_COPY_REGS((*(__elf_regs)), task_pt_regs(__tsk)); 1; })
128 * This is used to ensure we don't load something for the wrong architecture.
130 #ifndef elf_check_arch
131 #define elf_check_arch(x) ((x)->e_machine == ELF_ARCH) /* Might be EM_SPARCV9 or EM_SPARC */
134 #define USE_ELF_CORE_DUMP
135 #define ELF_EXEC_PAGESIZE PAGE_SIZE
137 /* This is the location that an ET_DYN program is loaded if exec'ed. Typical
138 use of this is to invoke "./ld.so someprog" to test out a new version of
139 the loader. We need to make sure that it is out of the way of the program
140 that it will "exec", and that there is sufficient room for the brk. */
142 #ifndef ELF_ET_DYN_BASE
143 #define ELF_ET_DYN_BASE 0x0000010000000000UL
147 /* This yields a mask that user programs can use to figure out what
148 instruction set this cpu supports. */
150 /* On Ultra, we support all of the v8 capabilities. */
151 static inline unsigned int sparc64_elf_hwcap(void)
153 unsigned int cap
= (HWCAP_SPARC_FLUSH
| HWCAP_SPARC_STBAR
|
154 HWCAP_SPARC_SWAP
| HWCAP_SPARC_MULDIV
|
157 if (tlb_type
== cheetah
|| tlb_type
== cheetah_plus
)
158 cap
|= HWCAP_SPARC_ULTRA3
;
159 else if (tlb_type
== hypervisor
) {
160 if (sun4v_chip_type
== SUN4V_CHIP_NIAGARA1
||
161 sun4v_chip_type
== SUN4V_CHIP_NIAGARA2
)
162 cap
|= HWCAP_SPARC_BLKINIT
;
163 if (sun4v_chip_type
== SUN4V_CHIP_NIAGARA2
)
164 cap
|= HWCAP_SPARC_N2
;
170 #define ELF_HWCAP sparc64_elf_hwcap();
172 /* This yields a string that ld.so will use to load implementation
173 specific libraries for optimization. This is more specific in
174 intent than poking at uname or /proc/cpuinfo. */
176 #define ELF_PLATFORM (NULL)
179 #define SET_PERSONALITY(ex, ibcs2) \
180 do { unsigned long new_flags = current_thread_info()->flags; \
181 new_flags &= _TIF_32BIT; \
182 if ((ex).e_ident[EI_CLASS] == ELFCLASS32) \
183 new_flags |= _TIF_32BIT; \
185 new_flags &= ~_TIF_32BIT; \
186 if ((current_thread_info()->flags & _TIF_32BIT) \
188 set_thread_flag(TIF_ABI_PENDING); \
190 clear_thread_flag(TIF_ABI_PENDING); \
191 /* flush_thread will update pgd cache */ \
193 set_personality(PER_SVR4); \
194 else if (current->personality != PER_LINUX32) \
195 set_personality(PER_LINUX); \
199 #endif /* !(__ASM_SPARC64_ELF_H) */