* elf-bfd.h (elfcore_write_s390_tdb): Add prototype.
[deliverable/binutils-gdb.git] / include / elf / avr.h
CommitLineData
adde6300 1/* AVR ELF support for BFD.
99700d6f
NC
2 Copyright 1999, 2000, 2004, 2006, 2010, 2012
3 Free Software Foundation, Inc.
adde6300
AM
4 Contributed by Denis Chertykov <denisc@overta.ru>
5
750bce0e 6 This file is part of BFD, the Binary File Descriptor library.
adde6300 7
750bce0e
NC
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
e4e42b45 10 the Free Software Foundation; either version 3 of the License, or
750bce0e 11 (at your option) any later version.
adde6300 12
750bce0e
NC
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
adde6300 17
750bce0e 18 You should have received a copy of the GNU General Public License
e4e42b45
NC
19 along with this program; if not, write to the Free Software Foundation,
20 Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. */
adde6300
AM
21
22#ifndef _ELF_AVR_H
23#define _ELF_AVR_H
24
25#include "elf/reloc-macros.h"
26
27/* Processor specific flags for the ELF header e_flags field. */
7b21ac3f 28#define EF_AVR_MACH 0x7F
adde6300 29
df406460
NC
30/* If bit #7 is set, it is assumed that the elf file uses local symbols
31 as reference for the relocations so that linker relaxation is possible. */
32#define EF_AVR_LINKRELAX_PREPARED 0x80
33
99700d6f
NC
34#define E_AVR_MACH_AVR1 1
35#define E_AVR_MACH_AVR2 2
36#define E_AVR_MACH_AVR25 25
37#define E_AVR_MACH_AVR3 3
38#define E_AVR_MACH_AVR31 31
39#define E_AVR_MACH_AVR35 35
40#define E_AVR_MACH_AVR4 4
41#define E_AVR_MACH_AVR5 5
42#define E_AVR_MACH_AVR51 51
43#define E_AVR_MACH_AVR6 6
8cc66334
EW
44#define E_AVR_MACH_XMEGA1 101
45#define E_AVR_MACH_XMEGA2 102
46#define E_AVR_MACH_XMEGA3 103
47#define E_AVR_MACH_XMEGA4 104
48#define E_AVR_MACH_XMEGA5 105
49#define E_AVR_MACH_XMEGA6 106
50#define E_AVR_MACH_XMEGA7 107
adde6300
AM
51
52/* Relocations. */
53START_RELOC_NUMBERS (elf_avr_reloc_type)
54 RELOC_NUMBER (R_AVR_NONE, 0)
55 RELOC_NUMBER (R_AVR_32, 1)
56 RELOC_NUMBER (R_AVR_7_PCREL, 2)
57 RELOC_NUMBER (R_AVR_13_PCREL, 3)
58 RELOC_NUMBER (R_AVR_16, 4)
59 RELOC_NUMBER (R_AVR_16_PM, 5)
60 RELOC_NUMBER (R_AVR_LO8_LDI, 6)
61 RELOC_NUMBER (R_AVR_HI8_LDI, 7)
62 RELOC_NUMBER (R_AVR_HH8_LDI, 8)
63 RELOC_NUMBER (R_AVR_LO8_LDI_NEG, 9)
64 RELOC_NUMBER (R_AVR_HI8_LDI_NEG, 10)
65 RELOC_NUMBER (R_AVR_HH8_LDI_NEG, 11)
66 RELOC_NUMBER (R_AVR_LO8_LDI_PM, 12)
67 RELOC_NUMBER (R_AVR_HI8_LDI_PM, 13)
68 RELOC_NUMBER (R_AVR_HH8_LDI_PM, 14)
69 RELOC_NUMBER (R_AVR_LO8_LDI_PM_NEG, 15)
70 RELOC_NUMBER (R_AVR_HI8_LDI_PM_NEG, 16)
71 RELOC_NUMBER (R_AVR_HH8_LDI_PM_NEG, 17)
72 RELOC_NUMBER (R_AVR_CALL, 18)
750bce0e
NC
73 RELOC_NUMBER (R_AVR_LDI, 19)
74 RELOC_NUMBER (R_AVR_6, 20)
75 RELOC_NUMBER (R_AVR_6_ADIW, 21)
df406460
NC
76 RELOC_NUMBER (R_AVR_MS8_LDI, 22)
77 RELOC_NUMBER (R_AVR_MS8_LDI_NEG, 23)
28c9d252
NC
78 RELOC_NUMBER (R_AVR_LO8_LDI_GS, 24)
79 RELOC_NUMBER (R_AVR_HI8_LDI_GS, 25)
17e57237 80 RELOC_NUMBER (R_AVR_8, 26)
99700d6f
NC
81 RELOC_NUMBER (R_AVR_8_LO8, 27)
82 RELOC_NUMBER (R_AVR_8_HI8, 28)
40551fb8 83 RELOC_NUMBER (R_AVR_8_HLO8, 29)
1b452ec6 84END_RELOC_NUMBERS (R_AVR_max)
adde6300
AM
85
86#endif /* _ELF_AVR_H */
This page took 0.51091 seconds and 4 git commands to generate.