elf.h 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. #ifndef __V850_ELF_H__
  2. #define __V850_ELF_H__
  3. /*
  4. * ELF register definitions..
  5. */
  6. #include <asm/ptrace.h>
  7. #include <asm/user.h>
  8. #include <asm/byteorder.h>
  9. typedef unsigned long elf_greg_t;
  10. #define ELF_NGREG (sizeof (struct pt_regs) / sizeof(elf_greg_t))
  11. typedef elf_greg_t elf_gregset_t[ELF_NGREG];
  12. typedef struct user_fpu_struct elf_fpregset_t;
  13. /*
  14. * This is used to ensure we don't load something for the wrong architecture.
  15. */
  16. #define elf_check_arch(x) \
  17. ((x)->e_machine == EM_V850 || (x)->e_machine == EM_CYGNUS_V850)
  18. /* v850 relocation types. */
  19. #define R_V850_NONE 0
  20. #define R_V850_9_PCREL 1
  21. #define R_V850_22_PCREL 2
  22. #define R_V850_HI16_S 3
  23. #define R_V850_HI16 4
  24. #define R_V850_LO16 5
  25. #define R_V850_32 6
  26. #define R_V850_16 7
  27. #define R_V850_8 8
  28. #define R_V850_SDA_16_16_OFFSET 9 /* For ld.b, st.b, set1, clr1,
  29. not1, tst1, movea, movhi */
  30. #define R_V850_SDA_15_16_OFFSET 10 /* For ld.w, ld.h, ld.hu, st.w, st.h */
  31. #define R_V850_ZDA_16_16_OFFSET 11 /* For ld.b, st.b, set1, clr1,
  32. not1, tst1, movea, movhi */
  33. #define R_V850_ZDA_15_16_OFFSET 12 /* For ld.w, ld.h, ld.hu, st.w, st.h */
  34. #define R_V850_TDA_6_8_OFFSET 13 /* For sst.w, sld.w */
  35. #define R_V850_TDA_7_8_OFFSET 14 /* For sst.h, sld.h */
  36. #define R_V850_TDA_7_7_OFFSET 15 /* For sst.b, sld.b */
  37. #define R_V850_TDA_16_16_OFFSET 16 /* For set1, clr1, not1, tst1,
  38. movea, movhi */
  39. #define R_V850_NUM 17
  40. /*
  41. * These are used to set parameters in the core dumps.
  42. */
  43. #define ELF_CLASS ELFCLASS32
  44. #ifdef __LITTLE_ENDIAN__
  45. #define ELF_DATA ELFDATA2LSB
  46. #else
  47. #define ELF_DATA ELFDATA2MSB
  48. #endif
  49. #define ELF_ARCH EM_V850
  50. #define USE_ELF_CORE_DUMP
  51. #define ELF_EXEC_PAGESIZE 4096
  52. #define ELF_CORE_COPY_REGS(_dest,_regs) \
  53. memcpy((char *) &_dest, (char *) _regs, \
  54. sizeof(struct pt_regs));
  55. /* This yields a mask that user programs can use to figure out what
  56. instruction set this CPU supports. This could be done in user space,
  57. but it's not easy, and we've already done it here. */
  58. #define ELF_HWCAP (0)
  59. /* This yields a string that ld.so will use to load implementation
  60. specific libraries for optimization. This is more specific in
  61. intent than poking at uname or /proc/cpuinfo.
  62. For the moment, we have only optimizations for the Intel generations,
  63. but that could change... */
  64. #define ELF_PLATFORM (NULL)
  65. #define ELF_PLAT_INIT(_r, load_addr) \
  66. do { \
  67. _r->gpr[0] = _r->gpr[1] = _r->gpr[2] = _r->gpr[3] = \
  68. _r->gpr[4] = _r->gpr[5] = _r->gpr[6] = _r->gpr[7] = \
  69. _r->gpr[8] = _r->gpr[9] = _r->gpr[10] = _r->gpr[11] = \
  70. _r->gpr[12] = _r->gpr[13] = _r->gpr[14] = _r->gpr[15] = \
  71. _r->gpr[16] = _r->gpr[17] = _r->gpr[18] = _r->gpr[19] = \
  72. _r->gpr[20] = _r->gpr[21] = _r->gpr[22] = _r->gpr[23] = \
  73. _r->gpr[24] = _r->gpr[25] = _r->gpr[26] = _r->gpr[27] = \
  74. _r->gpr[28] = _r->gpr[29] = _r->gpr[30] = _r->gpr[31] = \
  75. 0; \
  76. } while (0)
  77. #ifdef __KERNEL__
  78. #define SET_PERSONALITY(ex, ibcs2) set_personality(PER_LINUX_32BIT)
  79. #endif
  80. #endif /* __V850_ELF_H__ */