elf.h 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  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. #ifdef __KERNEL__
  36. #ifndef __ASSEMBLY__
  37. /*
  38. * This yields a string that ld.so will use to load implementation
  39. * specific libraries for optimization. This is more specific in
  40. * intent than poking at uname or /proc/cpuinfo.
  41. *
  42. * For now we just provide a fairly general string that describes the
  43. * processor family. This could be made more specific later if someone
  44. * implemented optimisations that require it. 26-bit CPUs give you
  45. * "v1l" for ARM2 (no SWP) and "v2l" for anything else (ARM1 isn't
  46. * supported). 32-bit CPUs give you "v3[lb]" for anything based on an
  47. * ARM6 or ARM7 core and "armv4[lb]" for anything based on a StrongARM-1
  48. * core.
  49. */
  50. #define ELF_PLATFORM_SIZE 8
  51. #define ELF_PLATFORM (elf_platform)
  52. extern char elf_platform[];
  53. #endif
  54. /*
  55. * This is used to ensure we don't load something for the wrong architecture.
  56. */
  57. #define elf_check_arch(x) ((x)->e_machine == EM_ARM && ELF_PROC_OK(x))
  58. /*
  59. * 32-bit code is always OK. Some cpus can do 26-bit, some can't.
  60. */
  61. #define ELF_PROC_OK(x) (ELF_THUMB_OK(x) && ELF_26BIT_OK(x))
  62. #define ELF_THUMB_OK(x) \
  63. ((elf_hwcap & HWCAP_THUMB && ((x)->e_entry & 1) == 1) || \
  64. ((x)->e_entry & 3) == 0)
  65. #define ELF_26BIT_OK(x) \
  66. ((elf_hwcap & HWCAP_26BIT && (x)->e_flags & EF_ARM_APCS26) || \
  67. ((x)->e_flags & EF_ARM_APCS26) == 0)
  68. #define USE_ELF_CORE_DUMP
  69. #define ELF_EXEC_PAGESIZE 4096
  70. /* This is the location that an ET_DYN program is loaded if exec'ed. Typical
  71. use of this is to invoke "./ld.so someprog" to test out a new version of
  72. the loader. We need to make sure that it is out of the way of the program
  73. that it will "exec", and that there is sufficient room for the brk. */
  74. #define ELF_ET_DYN_BASE (2 * TASK_SIZE / 3)
  75. /* When the program starts, a1 contains a pointer to a function to be
  76. registered with atexit, as per the SVR4 ABI. A value of 0 means we
  77. have no such handler. */
  78. #define ELF_PLAT_INIT(_r, load_addr) (_r)->ARM_r0 = 0
  79. /*
  80. * Since the FPA coprocessor uses CP1 and CP2, and iWMMXt uses CP0
  81. * and CP1, we only enable access to the iWMMXt coprocessor if the
  82. * binary is EABI or softfloat (and thus, guaranteed not to use
  83. * FPA instructions.)
  84. */
  85. #define SET_PERSONALITY(ex, ibcs2) \
  86. do { \
  87. if ((ex).e_flags & EF_ARM_APCS26) { \
  88. set_personality(PER_LINUX); \
  89. } else { \
  90. set_personality(PER_LINUX_32BIT); \
  91. if (elf_hwcap & HWCAP_IWMMXT && (ex).e_flags & (EF_ARM_EABI_MASK | EF_ARM_SOFT_FLOAT)) \
  92. set_thread_flag(TIF_USING_IWMMXT); \
  93. else \
  94. clear_thread_flag(TIF_USING_IWMMXT); \
  95. } \
  96. } while (0)
  97. #endif
  98. #endif