diff options
author | Ley Foon Tan <lftan@altera.com> | 2014-11-06 02:19:55 -0500 |
---|---|---|
committer | Ley Foon Tan <lftan@altera.com> | 2014-12-07 23:55:58 -0500 |
commit | 19f4c6b5afb92d405009cb8801bde3edc9205dc0 (patch) | |
tree | 9d7aeed263ea1297ffcb8dc8fdaa5ca4c4b4c3a7 /arch/nios2 | |
parent | 4fdace8d4f8bee9ba163646e8530394f9c36e67e (diff) |
nios2: ELF definitions
This patch adds definitions for the ELF format
Signed-off-by: Ley Foon Tan <lftan@altera.com>
Diffstat (limited to 'arch/nios2')
-rw-r--r-- | arch/nios2/include/asm/elf.h | 101 | ||||
-rw-r--r-- | arch/nios2/include/uapi/asm/elf.h | 67 |
2 files changed, 168 insertions, 0 deletions
diff --git a/arch/nios2/include/asm/elf.h b/arch/nios2/include/asm/elf.h new file mode 100644 index 000000000000..b7d655dff731 --- /dev/null +++ b/arch/nios2/include/asm/elf.h | |||
@@ -0,0 +1,101 @@ | |||
1 | /* | ||
2 | * Copyright (C) 2011 Tobias Klauser <tklauser@distanz.ch> | ||
3 | * | ||
4 | * This program is free software; you can redistribute it and/or modify | ||
5 | * it under the terms of the GNU General Public License as published by | ||
6 | * the Free Software Foundation; either version 2 of the License, or | ||
7 | * (at your option) any later version. | ||
8 | * | ||
9 | * This program is distributed in the hope that it will be useful, | ||
10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
12 | * GNU General Public License for more details. | ||
13 | * | ||
14 | * You should have received a copy of the GNU General Public License | ||
15 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
16 | * | ||
17 | */ | ||
18 | |||
19 | #ifndef _ASM_NIOS2_ELF_H | ||
20 | #define _ASM_NIOS2_ELF_H | ||
21 | |||
22 | #include <uapi/asm/elf.h> | ||
23 | |||
24 | /* | ||
25 | * This is used to ensure we don't load something for the wrong architecture. | ||
26 | */ | ||
27 | #define elf_check_arch(x) ((x)->e_machine == EM_ALTERA_NIOS2) | ||
28 | |||
29 | #define ELF_PLAT_INIT(_r, load_addr) | ||
30 | |||
31 | #define CORE_DUMP_USE_REGSET | ||
32 | #define ELF_EXEC_PAGESIZE 4096 | ||
33 | |||
34 | /* This is the location that an ET_DYN program is loaded if exec'ed. Typical | ||
35 | use of this is to invoke "./ld.so someprog" to test out a new version of | ||
36 | the loader. We need to make sure that it is out of the way of the program | ||
37 | that it will "exec", and that there is sufficient room for the brk. */ | ||
38 | |||
39 | #define ELF_ET_DYN_BASE 0xD0000000UL | ||
40 | |||
41 | /* regs is struct pt_regs, pr_reg is elf_gregset_t (which is | ||
42 | now struct_user_regs, they are different) */ | ||
43 | |||
44 | #define ARCH_HAS_SETUP_ADDITIONAL_PAGES 1 | ||
45 | struct linux_binprm; | ||
46 | extern int arch_setup_additional_pages(struct linux_binprm *bprm, | ||
47 | int uses_interp); | ||
48 | #define ELF_CORE_COPY_REGS(pr_reg, regs) \ | ||
49 | { do { \ | ||
50 | /* Bleech. */ \ | ||
51 | pr_reg[0] = regs->r8; \ | ||
52 | pr_reg[1] = regs->r9; \ | ||
53 | pr_reg[2] = regs->r10; \ | ||
54 | pr_reg[3] = regs->r11; \ | ||
55 | pr_reg[4] = regs->r12; \ | ||
56 | pr_reg[5] = regs->r13; \ | ||
57 | pr_reg[6] = regs->r14; \ | ||
58 | pr_reg[7] = regs->r15; \ | ||
59 | pr_reg[8] = regs->r1; \ | ||
60 | pr_reg[9] = regs->r2; \ | ||
61 | pr_reg[10] = regs->r3; \ | ||
62 | pr_reg[11] = regs->r4; \ | ||
63 | pr_reg[12] = regs->r5; \ | ||
64 | pr_reg[13] = regs->r6; \ | ||
65 | pr_reg[14] = regs->r7; \ | ||
66 | pr_reg[15] = regs->orig_r2; \ | ||
67 | pr_reg[16] = regs->ra; \ | ||
68 | pr_reg[17] = regs->fp; \ | ||
69 | pr_reg[18] = regs->sp; \ | ||
70 | pr_reg[19] = regs->gp; \ | ||
71 | pr_reg[20] = regs->estatus; \ | ||
72 | pr_reg[21] = regs->ea; \ | ||
73 | pr_reg[22] = regs->orig_r7; \ | ||
74 | { \ | ||
75 | struct switch_stack *sw = ((struct switch_stack *)regs) - 1; \ | ||
76 | pr_reg[23] = sw->r16; \ | ||
77 | pr_reg[24] = sw->r17; \ | ||
78 | pr_reg[25] = sw->r18; \ | ||
79 | pr_reg[26] = sw->r19; \ | ||
80 | pr_reg[27] = sw->r20; \ | ||
81 | pr_reg[28] = sw->r21; \ | ||
82 | pr_reg[29] = sw->r22; \ | ||
83 | pr_reg[30] = sw->r23; \ | ||
84 | pr_reg[31] = sw->fp; \ | ||
85 | pr_reg[32] = sw->gp; \ | ||
86 | pr_reg[33] = sw->ra; \ | ||
87 | } \ | ||
88 | } while (0); } | ||
89 | |||
90 | /* This yields a mask that user programs can use to figure out what | ||
91 | instruction set this cpu supports. */ | ||
92 | |||
93 | #define ELF_HWCAP (0) | ||
94 | |||
95 | /* This yields a string that ld.so will use to load implementation | ||
96 | specific libraries for optimization. This is more specific in | ||
97 | intent than poking at uname or /proc/cpuinfo. */ | ||
98 | |||
99 | #define ELF_PLATFORM (NULL) | ||
100 | |||
101 | #endif /* _ASM_NIOS2_ELF_H */ | ||
diff --git a/arch/nios2/include/uapi/asm/elf.h b/arch/nios2/include/uapi/asm/elf.h new file mode 100644 index 000000000000..a5b91ae5cf56 --- /dev/null +++ b/arch/nios2/include/uapi/asm/elf.h | |||
@@ -0,0 +1,67 @@ | |||
1 | /* | ||
2 | * Copyright (C) 2011 Tobias Klauser <tklauser@distanz.ch> | ||
3 | * | ||
4 | * This program is free software; you can redistribute it and/or modify | ||
5 | * it under the terms of the GNU General Public License as published by | ||
6 | * the Free Software Foundation; either version 2 of the License, or | ||
7 | * (at your option) any later version. | ||
8 | * | ||
9 | * This program is distributed in the hope that it will be useful, | ||
10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
12 | * GNU General Public License for more details. | ||
13 | * | ||
14 | * You should have received a copy of the GNU General Public License | ||
15 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
16 | * | ||
17 | */ | ||
18 | |||
19 | |||
20 | #ifndef _UAPI_ASM_NIOS2_ELF_H | ||
21 | #define _UAPI_ASM_NIOS2_ELF_H | ||
22 | |||
23 | #include <linux/ptrace.h> | ||
24 | |||
25 | /* Relocation types */ | ||
26 | #define R_NIOS2_NONE 0 | ||
27 | #define R_NIOS2_S16 1 | ||
28 | #define R_NIOS2_U16 2 | ||
29 | #define R_NIOS2_PCREL16 3 | ||
30 | #define R_NIOS2_CALL26 4 | ||
31 | #define R_NIOS2_IMM5 5 | ||
32 | #define R_NIOS2_CACHE_OPX 6 | ||
33 | #define R_NIOS2_IMM6 7 | ||
34 | #define R_NIOS2_IMM8 8 | ||
35 | #define R_NIOS2_HI16 9 | ||
36 | #define R_NIOS2_LO16 10 | ||
37 | #define R_NIOS2_HIADJ16 11 | ||
38 | #define R_NIOS2_BFD_RELOC_32 12 | ||
39 | #define R_NIOS2_BFD_RELOC_16 13 | ||
40 | #define R_NIOS2_BFD_RELOC_8 14 | ||
41 | #define R_NIOS2_GPREL 15 | ||
42 | #define R_NIOS2_GNU_VTINHERIT 16 | ||
43 | #define R_NIOS2_GNU_VTENTRY 17 | ||
44 | #define R_NIOS2_UJMP 18 | ||
45 | #define R_NIOS2_CJMP 19 | ||
46 | #define R_NIOS2_CALLR 20 | ||
47 | #define R_NIOS2_ALIGN 21 | ||
48 | /* Keep this the last entry. */ | ||
49 | #define R_NIOS2_NUM 22 | ||
50 | |||
51 | typedef unsigned long elf_greg_t; | ||
52 | |||
53 | #define ELF_NGREG \ | ||
54 | ((sizeof(struct pt_regs) + sizeof(struct switch_stack)) / \ | ||
55 | sizeof(elf_greg_t)) | ||
56 | typedef elf_greg_t elf_gregset_t[ELF_NGREG]; | ||
57 | |||
58 | typedef unsigned long elf_fpregset_t; | ||
59 | |||
60 | /* | ||
61 | * These are used to set parameters in the core dumps. | ||
62 | */ | ||
63 | #define ELF_CLASS ELFCLASS32 | ||
64 | #define ELF_DATA ELFDATA2LSB | ||
65 | #define ELF_ARCH EM_ALTERA_NIOS2 | ||
66 | |||
67 | #endif /* _UAPI_ASM_NIOS2_ELF_H */ | ||