elf.h 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. #ifndef __ASMARM_ELF_H
  2. #define __ASMARM_ELF_H
  3. #ifndef __ASSEMBLY__
  4. /*
  5. * ELF register definitions..
  6. */
  7. #include <asm/ptrace.h>
  8. #include <asm/user.h>
  9. typedef unsigned long elf_greg_t;
  10. typedef unsigned long elf_freg_t[3];
  11. #define ELF_NGREG (sizeof (struct pt_regs) / sizeof(elf_greg_t))
  12. typedef elf_greg_t elf_gregset_t[ELF_NGREG];
  13. typedef struct user_fp elf_fpregset_t;
  14. #endif
  15. #define EM_ARM 40
  16. #define EF_ARM_APCS26 0x08
  17. #define EF_ARM_SOFT_FLOAT 0x200
  18. #define EF_ARM_EABI_MASK 0xFF000000
  19. #define R_ARM_NONE 0
  20. #define R_ARM_PC24 1
  21. #define R_ARM_ABS32 2
  22. #define R_ARM_CALL 28
  23. #define R_ARM_JUMP24 29
  24. /*
  25. * These are used to set parameters in the core dumps.
  26. */
  27. #define ELF_CLASS ELFCLASS32
  28. #ifdef __ARMEB__
  29. #define ELF_DATA ELFDATA2MSB
  30. #else
  31. #define ELF_DATA ELFDATA2LSB
  32. #endif
  33. #define ELF_ARCH EM_ARM
  34. #ifdef __KERNEL__
  35. #include <asm/procinfo.h>
  36. #ifndef __ASSEMBLY__
  37. /*
  38. * This yields a mask that user programs can use to figure out what
  39. * instruction set this cpu supports.
  40. */
  41. #define ELF_HWCAP (elf_hwcap)
  42. extern unsigned int elf_hwcap;
  43. /*
  44. * This yields a string that ld.so will use to load implementation
  45. * specific libraries for optimization. This is more specific in
  46. * intent than poking at uname or /proc/cpuinfo.
  47. *
  48. * For now we just provide a fairly general string that describes the
  49. * processor family. This could be made more specific later if someone
  50. * implemented optimisations that require it. 26-bit CPUs give you
  51. * "v1l" for ARM2 (no SWP) and "v2l" for anything else (ARM1 isn't
  52. * supported). 32-bit CPUs give you "v3[lb]" for anything based on an
  53. * ARM6 or ARM7 core and "armv4[lb]" for anything based on a StrongARM-1
  54. * core.
  55. */
  56. #define ELF_PLATFORM_SIZE 8
  57. #define ELF_PLATFORM (elf_platform)
  58. extern char elf_platform[];
  59. #endif
  60. /*
  61. * This is used to ensure we don't load something for the wrong architecture.
  62. */
  63. #define elf_check_arch(x) ((x)->e_machine == EM_ARM && ELF_PROC_OK(x))
  64. /*
  65. * 32-bit code is always OK. Some cpus can do 26-bit, some can't.
  66. */
  67. #define ELF_PROC_OK(x) (ELF_THUMB_OK(x) && ELF_26BIT_OK(x))
  68. #define ELF_THUMB_OK(x) \
  69. ((elf_hwcap & HWCAP_THUMB && ((x)->e_entry & 1) == 1) || \
  70. ((x)->e_entry & 3) == 0)
  71. #define ELF_26BIT_OK(x) \
  72. ((elf_hwcap & HWCAP_26BIT && (x)->e_flags & EF_ARM_APCS26) || \
  73. ((x)->e_flags & EF_ARM_APCS26) == 0)
  74. #define USE_ELF_CORE_DUMP
  75. #define ELF_EXEC_PAGESIZE 4096
  76. /* This is the location that an ET_DYN program is loaded if exec'ed. Typical
  77. use of this is to invoke "./ld.so someprog" to test out a new version of
  78. the loader. We need to make sure that it is out of the way of the program
  79. that it will "exec", and that there is sufficient room for the brk. */
  80. #define ELF_ET_DYN_BASE (2 * TASK_SIZE / 3)
  81. /* When the program starts, a1 contains a pointer to a function to be
  82. registered with atexit, as per the SVR4 ABI. A value of 0 means we
  83. have no such handler. */
  84. #define ELF_PLAT_INIT(_r, load_addr) (_r)->ARM_r0 = 0
  85. #ifndef CONFIG_IWMMXT
  86. /* Old NetWinder binaries were compiled in such a way that the iBCS
  87. heuristic always trips on them. Until these binaries become uncommon
  88. enough not to care, don't trust the `ibcs' flag here. In any case
  89. there is no other ELF system currently supported by iBCS.
  90. @@ Could print a warning message to encourage users to upgrade. */
  91. #define SET_PERSONALITY(ex,ibcs2) \
  92. set_personality(((ex).e_flags & EF_ARM_APCS26 ? PER_LINUX : PER_LINUX_32BIT))
  93. #else
  94. /*
  95. * All iWMMXt capable CPUs don't support 26-bit mode. Yet they can run
  96. * legacy binaries which used to contain FPA11 floating point instructions
  97. * that have always been emulated by the kernel. PFA11 and iWMMXt overlap
  98. * on coprocessor 1 space though. We therefore must decide if given task
  99. * is allowed to use CP 0 and 1 for iWMMXt, or if they should be blocked
  100. * at all times for the prefetch exception handler to catch FPA11 opcodes
  101. * and emulate them. The best indication to discriminate those two cases
  102. * is the SOFT_FLOAT flag in the ELF header.
  103. */
  104. #define SET_PERSONALITY(ex,ibcs2) \
  105. do { \
  106. set_personality(PER_LINUX_32BIT); \
  107. if (((ex).e_flags & EF_ARM_EABI_MASK) || \
  108. ((ex).e_flags & EF_ARM_SOFT_FLOAT)) \
  109. set_thread_flag(TIF_USING_IWMMXT); \
  110. else \
  111. clear_thread_flag(TIF_USING_IWMMXT); \
  112. } while (0)
  113. #endif
  114. #endif
  115. #endif