elf.h 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. #ifndef __PPC_ELF_H
  2. #define __PPC_ELF_H
  3. /*
  4. * ELF register definitions..
  5. */
  6. #include <asm/types.h>
  7. #include <asm/ptrace.h>
  8. #include <asm/cputable.h>
  9. #include <asm/auxvec.h>
  10. /* PowerPC relocations defined by the ABIs */
  11. #define R_PPC_NONE 0
  12. #define R_PPC_ADDR32 1 /* 32bit absolute address */
  13. #define R_PPC_ADDR24 2 /* 26bit address, 2 bits ignored. */
  14. #define R_PPC_ADDR16 3 /* 16bit absolute address */
  15. #define R_PPC_ADDR16_LO 4 /* lower 16bit of absolute address */
  16. #define R_PPC_ADDR16_HI 5 /* high 16bit of absolute address */
  17. #define R_PPC_ADDR16_HA 6 /* adjusted high 16bit */
  18. #define R_PPC_ADDR14 7 /* 16bit address, 2 bits ignored */
  19. #define R_PPC_ADDR14_BRTAKEN 8
  20. #define R_PPC_ADDR14_BRNTAKEN 9
  21. #define R_PPC_REL24 10 /* PC relative 26 bit */
  22. #define R_PPC_REL14 11 /* PC relative 16 bit */
  23. #define R_PPC_REL14_BRTAKEN 12
  24. #define R_PPC_REL14_BRNTAKEN 13
  25. #define R_PPC_GOT16 14
  26. #define R_PPC_GOT16_LO 15
  27. #define R_PPC_GOT16_HI 16
  28. #define R_PPC_GOT16_HA 17
  29. #define R_PPC_PLTREL24 18
  30. #define R_PPC_COPY 19
  31. #define R_PPC_GLOB_DAT 20
  32. #define R_PPC_JMP_SLOT 21
  33. #define R_PPC_RELATIVE 22
  34. #define R_PPC_LOCAL24PC 23
  35. #define R_PPC_UADDR32 24
  36. #define R_PPC_UADDR16 25
  37. #define R_PPC_REL32 26
  38. #define R_PPC_PLT32 27
  39. #define R_PPC_PLTREL32 28
  40. #define R_PPC_PLT16_LO 29
  41. #define R_PPC_PLT16_HI 30
  42. #define R_PPC_PLT16_HA 31
  43. #define R_PPC_SDAREL16 32
  44. #define R_PPC_SECTOFF 33
  45. #define R_PPC_SECTOFF_LO 34
  46. #define R_PPC_SECTOFF_HI 35
  47. #define R_PPC_SECTOFF_HA 36
  48. /* Keep this the last entry. */
  49. #define R_PPC_NUM 37
  50. #define ELF_NGREG 48 /* includes nip, msr, lr, etc. */
  51. #define ELF_NFPREG 33 /* includes fpscr */
  52. #define ELF_NVRREG 33 /* includes vscr */
  53. #define ELF_NEVRREG 34 /* includes acc (as 2) */
  54. /*
  55. * These are used to set parameters in the core dumps.
  56. */
  57. #define ELF_ARCH EM_PPC
  58. #define ELF_CLASS ELFCLASS32
  59. #define ELF_DATA ELFDATA2MSB
  60. /* General registers */
  61. typedef unsigned long elf_greg_t;
  62. typedef elf_greg_t elf_gregset_t[ELF_NGREG];
  63. /* Floating point registers */
  64. typedef double elf_fpreg_t;
  65. typedef elf_fpreg_t elf_fpregset_t[ELF_NFPREG];
  66. /* Altivec registers */
  67. typedef __vector128 elf_vrreg_t;
  68. typedef elf_vrreg_t elf_vrregset_t[ELF_NVRREG];
  69. #ifdef __KERNEL__
  70. struct task_struct;
  71. /*
  72. * This is used to ensure we don't load something for the wrong architecture.
  73. */
  74. #define elf_check_arch(x) ((x)->e_machine == EM_PPC)
  75. /* This is the location that an ET_DYN program is loaded if exec'ed. Typical
  76. use of this is to invoke "./ld.so someprog" to test out a new version of
  77. the loader. We need to make sure that it is out of the way of the program
  78. that it will "exec", and that there is sufficient room for the brk. */
  79. #define ELF_ET_DYN_BASE (0x08000000)
  80. #define USE_ELF_CORE_DUMP
  81. #define ELF_EXEC_PAGESIZE 4096
  82. #define ELF_CORE_COPY_REGS(gregs, regs) \
  83. memcpy((gregs), (regs), sizeof(struct pt_regs)); \
  84. memset((char *)(gregs) + sizeof(struct pt_regs), 0, \
  85. sizeof(elf_gregset_t) - sizeof(struct pt_regs));
  86. #define ELF_CORE_COPY_TASK_REGS(t, elfregs) \
  87. ((t)->thread.regs? \
  88. ({ ELF_CORE_COPY_REGS((elfregs), (t)->thread.regs); 1; }): 0)
  89. extern int dump_task_fpu(struct task_struct *t, elf_fpregset_t *fpu);
  90. #define ELF_CORE_COPY_FPREGS(t, fpu) dump_task_fpu((t), (fpu))
  91. /* This yields a mask that user programs can use to figure out what
  92. instruction set this cpu supports. This could be done in userspace,
  93. but it's not easy, and we've already done it here. */
  94. #define ELF_HWCAP (cur_cpu_spec[0]->cpu_user_features)
  95. /* This yields a string that ld.so will use to load implementation
  96. specific libraries for optimization. This is more specific in
  97. intent than poking at uname or /proc/cpuinfo.
  98. For the moment, we have only optimizations for the Intel generations,
  99. but that could change... */
  100. #define ELF_PLATFORM (NULL)
  101. #define SET_PERSONALITY(ex, ibcs2) set_personality((ibcs2)?PER_SVR4:PER_LINUX)
  102. extern int dcache_bsize;
  103. extern int icache_bsize;
  104. extern int ucache_bsize;
  105. /*
  106. * The requirements here are:
  107. * - keep the final alignment of sp (sp & 0xf)
  108. * - make sure the 32-bit value at the first 16 byte aligned position of
  109. * AUXV is greater than 16 for glibc compatibility.
  110. * AT_IGNOREPPC is used for that.
  111. * - for compatibility with glibc ARCH_DLINFO must always be defined on PPC,
  112. * even if DLINFO_ARCH_ITEMS goes to zero or is undefined.
  113. */
  114. #define ARCH_DLINFO \
  115. do { \
  116. /* Handle glibc compatibility. */ \
  117. NEW_AUX_ENT(AT_IGNOREPPC, AT_IGNOREPPC); \
  118. NEW_AUX_ENT(AT_IGNOREPPC, AT_IGNOREPPC); \
  119. /* Cache size items */ \
  120. NEW_AUX_ENT(AT_DCACHEBSIZE, dcache_bsize); \
  121. NEW_AUX_ENT(AT_ICACHEBSIZE, icache_bsize); \
  122. NEW_AUX_ENT(AT_UCACHEBSIZE, ucache_bsize); \
  123. } while (0)
  124. #endif /* __KERNEL__ */
  125. #endif