elf.h 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. /* Changes made by LG Soft Oct 2004*/
  2. #ifndef __ASMBFIN_ELF_H
  3. #define __ASMBFIN_ELF_H
  4. /*
  5. * ELF register definitions..
  6. */
  7. #include <asm/ptrace.h>
  8. #include <asm/user.h>
  9. /* Processor specific flags for the ELF header e_flags field. */
  10. #define EF_BFIN_PIC 0x00000001 /* -fpic */
  11. #define EF_BFIN_FDPIC 0x00000002 /* -mfdpic */
  12. #define EF_BFIN_CODE_IN_L1 0x00000010 /* --code-in-l1 */
  13. #define EF_BFIN_DATA_IN_L1 0x00000020 /* --data-in-l1 */
  14. typedef unsigned long elf_greg_t;
  15. #define ELF_NGREG (sizeof(struct user_regs_struct) / sizeof(elf_greg_t))
  16. typedef elf_greg_t elf_gregset_t[ELF_NGREG];
  17. typedef struct user_bfinfp_struct elf_fpregset_t;
  18. /*
  19. * This is used to ensure we don't load something for the wrong architecture.
  20. */
  21. #define elf_check_arch(x) ((x)->e_machine == EM_BLACKFIN)
  22. #define elf_check_fdpic(x) ((x)->e_flags & EF_BFIN_FDPIC /* && !((x)->e_flags & EF_FRV_NON_PIC_RELOCS) */)
  23. #define elf_check_const_displacement(x) ((x)->e_flags & EF_BFIN_PIC)
  24. /* EM_BLACKFIN defined in linux/elf.h */
  25. /*
  26. * These are used to set parameters in the core dumps.
  27. */
  28. #define ELF_CLASS ELFCLASS32
  29. #define ELF_DATA ELFDATA2LSB
  30. #define ELF_ARCH EM_BLACKFIN
  31. #define ELF_PLAT_INIT(_r) _r->p1 = 0
  32. #define ELF_FDPIC_PLAT_INIT(_regs, _exec_map_addr, _interp_map_addr, _dynamic_addr) \
  33. do { \
  34. _regs->r7 = 0; \
  35. _regs->p0 = _exec_map_addr; \
  36. _regs->p1 = _interp_map_addr; \
  37. _regs->p2 = _dynamic_addr; \
  38. } while(0)
  39. #define USE_ELF_CORE_DUMP
  40. #define ELF_FDPIC_CORE_EFLAGS EF_BFIN_FDPIC
  41. #define ELF_EXEC_PAGESIZE 4096
  42. #define R_unused0 0 /* relocation type 0 is not defined */
  43. #define R_pcrel5m2 1 /*LSETUP part a */
  44. #define R_unused1 2 /* relocation type 2 is not defined */
  45. #define R_pcrel10 3 /* type 3, if cc jump <target> */
  46. #define R_pcrel12_jump 4 /* type 4, jump <target> */
  47. #define R_rimm16 5 /* type 0x5, rN = <target> */
  48. #define R_luimm16 6 /* # 0x6, preg.l=<target> Load imm 16 to lower half */
  49. #define R_huimm16 7 /* # 0x7, preg.h=<target> Load imm 16 to upper half */
  50. #define R_pcrel12_jump_s 8 /* # 0x8 jump.s <target> */
  51. #define R_pcrel24_jump_x 9 /* # 0x9 jump.x <target> */
  52. #define R_pcrel24 10 /* # 0xa call <target> , not expandable */
  53. #define R_unusedb 11 /* # 0xb not generated */
  54. #define R_unusedc 12 /* # 0xc not used */
  55. #define R_pcrel24_jump_l 13 /*0xd jump.l <target> */
  56. #define R_pcrel24_call_x 14 /* 0xE, call.x <target> if <target> is above 24 bit limit call through P1 */
  57. #define R_var_eq_symb 15 /* 0xf, linker should treat it same as 0x12 */
  58. #define R_byte_data 16 /* 0x10, .byte var = symbol */
  59. #define R_byte2_data 17 /* 0x11, .byte2 var = symbol */
  60. #define R_byte4_data 18 /* 0x12, .byte4 var = symbol and .var var=symbol */
  61. #define R_pcrel11 19 /* 0x13, lsetup part b */
  62. #define R_unused14 20 /* 0x14, undefined */
  63. #define R_unused15 21 /* not generated by VDSP 3.5 */
  64. /* arithmetic relocations */
  65. #define R_push 0xE0
  66. #define R_const 0xE1
  67. #define R_add 0xE2
  68. #define R_sub 0xE3
  69. #define R_mult 0xE4
  70. #define R_div 0xE5
  71. #define R_mod 0xE6
  72. #define R_lshift 0xE7
  73. #define R_rshift 0xE8
  74. #define R_and 0xE9
  75. #define R_or 0xEA
  76. #define R_xor 0xEB
  77. #define R_land 0xEC
  78. #define R_lor 0xED
  79. #define R_len 0xEE
  80. #define R_neg 0xEF
  81. #define R_comp 0xF0
  82. #define R_page 0xF1
  83. #define R_hwpage 0xF2
  84. #define R_addr 0xF3
  85. /* This is the location that an ET_DYN program is loaded if exec'ed. Typical
  86. use of this is to invoke "./ld.so someprog" to test out a new version of
  87. the loader. We need to make sure that it is out of the way of the program
  88. that it will "exec", and that there is sufficient room for the brk. */
  89. #define ELF_ET_DYN_BASE 0xD0000000UL
  90. #define ELF_CORE_COPY_REGS(pr_reg, regs) \
  91. memcpy((char *) &pr_reg, (char *)regs, \
  92. sizeof(struct pt_regs));
  93. /* This yields a mask that user programs can use to figure out what
  94. instruction set this cpu supports. */
  95. #define ELF_HWCAP (0)
  96. /* This yields a string that ld.so will use to load implementation
  97. specific libraries for optimization. This is more specific in
  98. intent than poking at uname or /proc/cpuinfo. */
  99. #define ELF_PLATFORM (NULL)
  100. #ifdef __KERNEL__
  101. #define SET_PERSONALITY(ex, ibcs2) set_personality((ibcs2)?PER_SVR4:PER_LINUX)
  102. #endif
  103. #endif