elf.h 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef __ASMm68k_ELF_H
  3. #define __ASMm68k_ELF_H
  4. /*
  5. * ELF register definitions..
  6. */
  7. #include <asm/ptrace.h>
  8. #include <asm/user.h>
  9. /*
  10. * 68k ELF relocation types
  11. */
  12. #define R_68K_NONE 0
  13. #define R_68K_32 1
  14. #define R_68K_16 2
  15. #define R_68K_8 3
  16. #define R_68K_PC32 4
  17. #define R_68K_PC16 5
  18. #define R_68K_PC8 6
  19. #define R_68K_GOT32 7
  20. #define R_68K_GOT16 8
  21. #define R_68K_GOT8 9
  22. #define R_68K_GOT32O 10
  23. #define R_68K_GOT16O 11
  24. #define R_68K_GOT8O 12
  25. #define R_68K_PLT32 13
  26. #define R_68K_PLT16 14
  27. #define R_68K_PLT8 15
  28. #define R_68K_PLT32O 16
  29. #define R_68K_PLT16O 17
  30. #define R_68K_PLT8O 18
  31. #define R_68K_COPY 19
  32. #define R_68K_GLOB_DAT 20
  33. #define R_68K_JMP_SLOT 21
  34. #define R_68K_RELATIVE 22
  35. typedef unsigned long elf_greg_t;
  36. #define ELF_NGREG (sizeof(struct user_regs_struct) / sizeof(elf_greg_t))
  37. typedef elf_greg_t elf_gregset_t[ELF_NGREG];
  38. typedef struct user_m68kfp_struct elf_fpregset_t;
  39. /*
  40. * This is used to ensure we don't load something for the wrong architecture.
  41. */
  42. #define elf_check_arch(x) ((x)->e_machine == EM_68K)
  43. /*
  44. * These are used to set parameters in the core dumps.
  45. */
  46. #define ELF_CLASS ELFCLASS32
  47. #define ELF_DATA ELFDATA2MSB
  48. #define ELF_ARCH EM_68K
  49. /* For SVR4/m68k the function pointer to be registered with `atexit' is
  50. passed in %a1. Although my copy of the ABI has no such statement, it
  51. is actually used on ASV. */
  52. #define ELF_PLAT_INIT(_r, load_addr) _r->a1 = 0
  53. #define ELF_FDPIC_PLAT_INIT(_r, _exec_map_addr, _interp_map_addr, dynamic_addr) \
  54. do { \
  55. (_r)->d3 = _exec_map_addr; \
  56. (_r)->d4 = _interp_map_addr; \
  57. (_r)->d5 = dynamic_addr; \
  58. } while(0)
  59. #if defined(CONFIG_SUN3) || defined(CONFIG_COLDFIRE)
  60. #define ELF_EXEC_PAGESIZE 8192
  61. #else
  62. #define ELF_EXEC_PAGESIZE 4096
  63. #endif
  64. /* This is the location that an ET_DYN program is loaded if exec'ed. Typical
  65. use of this is to invoke "./ld.so someprog" to test out a new version of
  66. the loader. We need to make sure that it is out of the way of the program
  67. that it will "exec", and that there is sufficient room for the brk. */
  68. #ifndef CONFIG_SUN3
  69. #define ELF_ET_DYN_BASE 0xD0000000UL
  70. #else
  71. #define ELF_ET_DYN_BASE 0x0D800000UL
  72. #endif
  73. #define ELF_CORE_COPY_REGS(pr_reg, regs) \
  74. /* Bleech. */ \
  75. pr_reg[0] = regs->d1; \
  76. pr_reg[1] = regs->d2; \
  77. pr_reg[2] = regs->d3; \
  78. pr_reg[3] = regs->d4; \
  79. pr_reg[4] = regs->d5; \
  80. pr_reg[7] = regs->a0; \
  81. pr_reg[8] = regs->a1; \
  82. pr_reg[9] = regs->a2; \
  83. pr_reg[14] = regs->d0; \
  84. pr_reg[15] = rdusp(); \
  85. pr_reg[16] = regs->orig_d0; \
  86. pr_reg[17] = regs->sr; \
  87. pr_reg[18] = regs->pc; \
  88. pr_reg[19] = (regs->format << 12) | regs->vector; \
  89. { \
  90. struct switch_stack *sw = ((struct switch_stack *)regs) - 1; \
  91. pr_reg[5] = sw->d6; \
  92. pr_reg[6] = sw->d7; \
  93. pr_reg[10] = sw->a3; \
  94. pr_reg[11] = sw->a4; \
  95. pr_reg[12] = sw->a5; \
  96. pr_reg[13] = sw->a6; \
  97. }
  98. /* This yields a mask that user programs can use to figure out what
  99. instruction set this cpu supports. */
  100. #define ELF_HWCAP (0)
  101. /* This yields a string that ld.so will use to load implementation
  102. specific libraries for optimization. This is more specific in
  103. intent than poking at uname or /proc/cpuinfo. */
  104. #define ELF_PLATFORM (NULL)
  105. #define ELF_FDPIC_CORE_EFLAGS 0
  106. #endif