avr.h 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. /* AVR ELF support for BFD.
  2. Copyright (C) 1999-2022 Free Software Foundation, Inc.
  3. Contributed by Denis Chertykov <denisc@overta.ru>
  4. This file is part of BFD, the Binary File Descriptor library.
  5. This program is free software; you can redistribute it and/or modify
  6. it under the terms of the GNU General Public License as published by
  7. the Free Software Foundation; either version 3 of the License, or
  8. (at your option) any later version.
  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. You should have received a copy of the GNU General Public License
  14. along with this program; if not, write to the Free Software Foundation,
  15. Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. */
  16. #ifndef _ELF_AVR_H
  17. #define _ELF_AVR_H
  18. #include "elf/reloc-macros.h"
  19. /* Processor specific flags for the ELF header e_flags field. */
  20. #define EF_AVR_MACH 0x7F
  21. /* If bit #7 is set, it is assumed that the elf file uses local symbols
  22. as reference for the relocations so that linker relaxation is possible. */
  23. #define EF_AVR_LINKRELAX_PREPARED 0x80
  24. #define E_AVR_MACH_AVR1 1
  25. #define E_AVR_MACH_AVR2 2
  26. #define E_AVR_MACH_AVR25 25
  27. #define E_AVR_MACH_AVR3 3
  28. #define E_AVR_MACH_AVR31 31
  29. #define E_AVR_MACH_AVR35 35
  30. #define E_AVR_MACH_AVR4 4
  31. #define E_AVR_MACH_AVR5 5
  32. #define E_AVR_MACH_AVR51 51
  33. #define E_AVR_MACH_AVR6 6
  34. #define E_AVR_MACH_AVRTINY 100
  35. #define E_AVR_MACH_XMEGA1 101
  36. #define E_AVR_MACH_XMEGA2 102
  37. #define E_AVR_MACH_XMEGA3 103
  38. #define E_AVR_MACH_XMEGA4 104
  39. #define E_AVR_MACH_XMEGA5 105
  40. #define E_AVR_MACH_XMEGA6 106
  41. #define E_AVR_MACH_XMEGA7 107
  42. /* Relocations. */
  43. START_RELOC_NUMBERS (elf_avr_reloc_type)
  44. RELOC_NUMBER (R_AVR_NONE, 0)
  45. RELOC_NUMBER (R_AVR_32, 1)
  46. RELOC_NUMBER (R_AVR_7_PCREL, 2)
  47. RELOC_NUMBER (R_AVR_13_PCREL, 3)
  48. RELOC_NUMBER (R_AVR_16, 4)
  49. RELOC_NUMBER (R_AVR_16_PM, 5)
  50. RELOC_NUMBER (R_AVR_LO8_LDI, 6)
  51. RELOC_NUMBER (R_AVR_HI8_LDI, 7)
  52. RELOC_NUMBER (R_AVR_HH8_LDI, 8)
  53. RELOC_NUMBER (R_AVR_LO8_LDI_NEG, 9)
  54. RELOC_NUMBER (R_AVR_HI8_LDI_NEG, 10)
  55. RELOC_NUMBER (R_AVR_HH8_LDI_NEG, 11)
  56. RELOC_NUMBER (R_AVR_LO8_LDI_PM, 12)
  57. RELOC_NUMBER (R_AVR_HI8_LDI_PM, 13)
  58. RELOC_NUMBER (R_AVR_HH8_LDI_PM, 14)
  59. RELOC_NUMBER (R_AVR_LO8_LDI_PM_NEG, 15)
  60. RELOC_NUMBER (R_AVR_HI8_LDI_PM_NEG, 16)
  61. RELOC_NUMBER (R_AVR_HH8_LDI_PM_NEG, 17)
  62. RELOC_NUMBER (R_AVR_CALL, 18)
  63. RELOC_NUMBER (R_AVR_LDI, 19)
  64. RELOC_NUMBER (R_AVR_6, 20)
  65. RELOC_NUMBER (R_AVR_6_ADIW, 21)
  66. RELOC_NUMBER (R_AVR_MS8_LDI, 22)
  67. RELOC_NUMBER (R_AVR_MS8_LDI_NEG, 23)
  68. RELOC_NUMBER (R_AVR_LO8_LDI_GS, 24)
  69. RELOC_NUMBER (R_AVR_HI8_LDI_GS, 25)
  70. RELOC_NUMBER (R_AVR_8, 26)
  71. RELOC_NUMBER (R_AVR_8_LO8, 27)
  72. RELOC_NUMBER (R_AVR_8_HI8, 28)
  73. RELOC_NUMBER (R_AVR_8_HLO8, 29)
  74. RELOC_NUMBER (R_AVR_DIFF8, 30)
  75. RELOC_NUMBER (R_AVR_DIFF16, 31)
  76. RELOC_NUMBER (R_AVR_DIFF32, 32)
  77. RELOC_NUMBER (R_AVR_LDS_STS_16, 33)
  78. RELOC_NUMBER (R_AVR_PORT6, 34)
  79. RELOC_NUMBER (R_AVR_PORT5, 35)
  80. RELOC_NUMBER (R_AVR_32_PCREL, 36)
  81. END_RELOC_NUMBERS (R_AVR_max)
  82. #endif /* _ELF_AVR_H */