2 * Copyright 2010 Tilera Corporation. All Rights Reserved.
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation, version 2.
8 * This program is distributed in the hope that it will be useful, but
9 * WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or
11 * NON INFRINGEMENT. See the GNU General Public License for
15 #ifndef _ASM_TILE_ELF_H
16 #define _ASM_TILE_ELF_H
19 * ELF register definitions.
22 #include <arch/chip.h>
24 #include <linux/ptrace.h>
25 #include <asm/byteorder.h>
28 typedef unsigned long elf_greg_t
;
30 #define ELF_NGREG (sizeof(struct pt_regs) / sizeof(elf_greg_t))
31 typedef elf_greg_t elf_gregset_t
[ELF_NGREG
];
34 #define EM_TILEPRO 188
37 /* Provide a nominal data structure. */
39 typedef double elf_fpreg_t
;
40 typedef elf_fpreg_t elf_fpregset_t
[ELF_NFPREG
];
43 #define ELF_CLASS ELFCLASS64
45 #define ELF_CLASS ELFCLASS32
48 #define ELF_DATA ELFDATA2MSB
50 #define ELF_DATA ELFDATA2LSB
54 * There seems to be a bug in how compat_binfmt_elf.c works: it
55 * #undefs ELF_ARCH, but it is then used in binfmt_elf.c for fill_note_info().
56 * Hack around this by providing an enum value of ELF_ARCH.
58 enum { ELF_ARCH
= CHIP_ELF_TYPE() };
59 #define ELF_ARCH ELF_ARCH
62 * This is used to ensure we don't load something for the wrong architecture.
64 #define elf_check_arch(x) \
65 ((x)->e_ident[EI_CLASS] == ELF_CLASS && \
66 (x)->e_ident[EI_DATA] == ELF_DATA && \
67 (x)->e_machine == CHIP_ELF_TYPE())
69 /* The module loader only handles a few relocation types. */
72 #define R_TILE_JOFFLONG_X1 15
73 #define R_TILE_IMM16_X0_LO 25
74 #define R_TILE_IMM16_X1_LO 26
75 #define R_TILE_IMM16_X0_HA 29
76 #define R_TILE_IMM16_X1_HA 30
79 #define R_TILEGX_JUMPOFF_X1 21
80 #define R_TILEGX_IMM16_X0_HW0 36
81 #define R_TILEGX_IMM16_X1_HW0 37
82 #define R_TILEGX_IMM16_X0_HW1 38
83 #define R_TILEGX_IMM16_X1_HW1 39
84 #define R_TILEGX_IMM16_X0_HW2_LAST 48
85 #define R_TILEGX_IMM16_X1_HW2_LAST 49
88 /* Use standard page size for core dumps. */
89 #define ELF_EXEC_PAGESIZE PAGE_SIZE
92 * This is the location that an ET_DYN program is loaded if exec'ed. Typical
93 * use of this is to invoke "./ld.so someprog" to test out a new version of
94 * the loader. We need to make sure that it is out of the way of the program
95 * that it will "exec", and that there is sufficient room for the brk.
97 #define ELF_ET_DYN_BASE (TASK_SIZE / 3 * 2)
99 #define ELF_CORE_COPY_REGS(_dest, _regs) \
100 memcpy((char *) &_dest, (char *) _regs, \
101 sizeof(struct pt_regs));
103 /* No additional FP registers to copy. */
104 #define ELF_CORE_COPY_FPREGS(t, fpu) 0
107 * This yields a mask that user programs can use to figure out what
108 * instruction set this CPU supports. This could be done in user space,
109 * but it's not easy, and we've already done it here.
111 #define ELF_HWCAP (0)
114 * This yields a string that ld.so will use to load implementation
115 * specific libraries for optimization. This is more specific in
116 * intent than poking at uname or /proc/cpuinfo.
118 #define ELF_PLATFORM (NULL)
120 extern void elf_plat_init(struct pt_regs
*regs
, unsigned long load_addr
);
122 #define ELF_PLAT_INIT(_r, load_addr) elf_plat_init(_r, load_addr)
124 extern int dump_task_regs(struct task_struct
*, elf_gregset_t
*);
125 #define ELF_CORE_COPY_TASK_REGS(tsk, elf_regs) dump_task_regs(tsk, elf_regs)
127 /* Tilera Linux has no personalities currently, so no need to do anything. */
128 #define SET_PERSONALITY(ex) do { } while (0)
130 #define ARCH_HAS_SETUP_ADDITIONAL_PAGES
131 /* Support auto-mapping of the user interrupt vectors. */
133 extern int arch_setup_additional_pages(struct linux_binprm
*bprm
,
134 int executable_stack
);
137 #define COMPAT_ELF_PLATFORM "tilegx-m32"
140 * "Compat" binaries have the same machine type, but 32-bit class,
141 * since they're not a separate machine type, but just a 32-bit
142 * variant of the standard 64-bit architecture.
144 #define compat_elf_check_arch(x) \
145 ((x)->e_ident[EI_CLASS] == ELFCLASS32 && \
146 (x)->e_machine == CHIP_ELF_TYPE())
148 #define compat_start_thread(regs, ip, usp) do { \
149 regs->pc = ptr_to_compat_reg((void *)(ip)); \
150 regs->sp = ptr_to_compat_reg((void *)(usp)); \
151 single_step_execve(); \
155 * Use SET_PERSONALITY to indicate compatibility via TS_COMPAT.
157 #undef SET_PERSONALITY
158 #define SET_PERSONALITY(ex) \
160 set_personality(PER_LINUX | (current->personality & (~PER_MASK))); \
161 current_thread_info()->status &= ~TS_COMPAT; \
163 #define COMPAT_SET_PERSONALITY(ex) \
165 set_personality(PER_LINUX | (current->personality & (~PER_MASK))); \
166 current_thread_info()->status |= TS_COMPAT; \
169 #define COMPAT_ELF_ET_DYN_BASE (0xffffffff / 3 * 2)
171 #endif /* CONFIG_COMPAT */
173 #define CORE_DUMP_USE_REGSET
175 #endif /* _ASM_TILE_ELF_H */