elf.h
上传用户:szlgq88
上传日期:2009-04-28
资源大小:48287k
文件大小:4k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

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