elf.h 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. #ifndef __ASMARM_ELF_H
  2. #define __ASMARM_ELF_H
  3. #include <asm/hwcap.h>
  4. #ifndef __ASSEMBLY__
  5. /*
  6. * ELF register definitions..
  7. */
  8. #include <asm/ptrace.h>
  9. #include <asm/user.h>
  10. typedef unsigned long elf_greg_t;
  11. typedef unsigned long elf_freg_t[3];
  12. #define ELF_NGREG (sizeof (struct pt_regs) / sizeof(elf_greg_t))
  13. typedef elf_greg_t elf_gregset_t[ELF_NGREG];
  14. typedef struct user_fp elf_fpregset_t;
  15. #endif
  16. #define EM_ARM 40
  17. #define EF_ARM_APCS26 0x08
  18. #define EF_ARM_SOFT_FLOAT 0x200
  19. #define EF_ARM_EABI_MASK 0xFF000000
  20. #define R_ARM_NONE 0
  21. #define R_ARM_PC24 1
  22. #define R_ARM_ABS32 2
  23. #define R_ARM_CALL 28
  24. #define R_ARM_JUMP24 29
  25. /*
  26. * These are used to set parameters in the core dumps.
  27. */
  28. #define ELF_CLASS ELFCLASS32
  29. #ifdef __ARMEB__
  30. #define ELF_DATA ELFDATA2MSB
  31. #else
  32. #define ELF_DATA ELFDATA2LSB
  33. #endif
  34. #define ELF_ARCH EM_ARM
  35. #ifndef __ASSEMBLY__
  36. /*
  37. * This yields a string that ld.so will use to load implementation
  38. * specific libraries for optimization. This is more specific in
  39. * intent than poking at uname or /proc/cpuinfo.
  40. *
  41. * For now we just provide a fairly general string that describes the
  42. * processor family. This could be made more specific later if someone
  43. * implemented optimisations that require it. 26-bit CPUs give you
  44. * "v1l" for ARM2 (no SWP) and "v2l" for anything else (ARM1 isn't
  45. * supported). 32-bit CPUs give you "v3[lb]" for anything based on an
  46. * ARM6 or ARM7 core and "armv4[lb]" for anything based on a StrongARM-1
  47. * core.
  48. */
  49. #define ELF_PLATFORM_SIZE 8
  50. #define ELF_PLATFORM (elf_platform)
  51. extern char elf_platform[];
  52. #endif
  53. /*
  54. * This is used to ensure we don't load something for the wrong architecture.
  55. */
  56. #define elf_check_arch(x) ((x)->e_machine == EM_ARM && ELF_PROC_OK(x))
  57. /*
  58. * 32-bit code is always OK. Some cpus can do 26-bit, some can't.
  59. */
  60. #define ELF_PROC_OK(x) (ELF_THUMB_OK(x) && ELF_26BIT_OK(x))
  61. #define ELF_THUMB_OK(x) \
  62. ((elf_hwcap & HWCAP_THUMB && ((x)->e_entry & 1) == 1) || \
  63. ((x)->e_entry & 3) == 0)
  64. #define ELF_26BIT_OK(x) \
  65. ((elf_hwcap & HWCAP_26BIT && (x)->e_flags & EF_ARM_APCS26) || \
  66. ((x)->e_flags & EF_ARM_APCS26) == 0)
  67. #define USE_ELF_CORE_DUMP
  68. #define ELF_EXEC_PAGESIZE 4096
  69. /* This is the location that an ET_DYN program is loaded if exec'ed. Typical
  70. use of this is to invoke "./ld.so someprog" to test out a new version of
  71. the loader. We need to make sure that it is out of the way of the program
  72. that it will "exec", and that there is sufficient room for the brk. */
  73. #define ELF_ET_DYN_BASE (2 * TASK_SIZE / 3)
  74. /* When the program starts, a1 contains a pointer to a function to be
  75. registered with atexit, as per the SVR4 ABI. A value of 0 means we
  76. have no such handler. */
  77. #define ELF_PLAT_INIT(_r, load_addr) (_r)->ARM_r0 = 0
  78. /*
  79. * Since the FPA coprocessor uses CP1 and CP2, and iWMMXt uses CP0
  80. * and CP1, we only enable access to the iWMMXt coprocessor if the
  81. * binary is EABI or softfloat (and thus, guaranteed not to use
  82. * FPA instructions.)
  83. */
  84. #define SET_PERSONALITY(ex, ibcs2) \
  85. do { \
  86. if ((ex).e_flags & EF_ARM_APCS26) { \
  87. set_personality(PER_LINUX); \
  88. } else { \
  89. set_personality(PER_LINUX_32BIT); \
  90. if (elf_hwcap & HWCAP_IWMMXT && (ex).e_flags & (EF_ARM_EABI_MASK | EF_ARM_SOFT_FLOAT)) \
  91. set_thread_flag(TIF_USING_IWMMXT); \
  92. else \
  93. clear_thread_flag(TIF_USING_IWMMXT); \
  94. } \
  95. } while (0)
  96. #endif