elf.h 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. /*
  2. * OpenRISC Linux
  3. *
  4. * Linux architectural port borrowing liberally from similar works of
  5. * others. All original copyrights apply as per the original source
  6. * declaration.
  7. *
  8. * OpenRISC implementation:
  9. * Copyright (C) 2003 Matjaz Breskvar <phoenix@bsemi.com>
  10. * Copyright (C) 2010-2011 Jonas Bonn <jonas@southpole.se>
  11. * et al.
  12. *
  13. * This program is free software; you can redistribute it and/or modify
  14. * it under the terms of the GNU General Public License as published by
  15. * the Free Software Foundation; either version 2 of the License, or
  16. * (at your option) any later version.
  17. */
  18. #ifndef __ASM_OPENRISC_ELF_H
  19. #define __ASM_OPENRISC_ELF_H
  20. #include <linux/types.h>
  21. #include <uapi/asm/elf.h>
  22. /*
  23. * This is used to ensure we don't load something for the wrong architecture.
  24. */
  25. #define elf_check_arch(x) \
  26. (((x)->e_machine == EM_OR32) || ((x)->e_machine == EM_OPENRISC))
  27. /* This is the location that an ET_DYN program is loaded if exec'ed. Typical
  28. use of this is to invoke "./ld.so someprog" to test out a new version of
  29. the loader. We need to make sure that it is out of the way of the program
  30. that it will "exec", and that there is sufficient room for the brk. */
  31. #define ELF_ET_DYN_BASE (0x08000000)
  32. /*
  33. * Enable dump using regset.
  34. * This covers all of general/DSP/FPU regs.
  35. */
  36. #define CORE_DUMP_USE_REGSET
  37. #define ELF_EXEC_PAGESIZE 8192
  38. extern void dump_elf_thread(elf_greg_t *dest, struct pt_regs *pt);
  39. #define ELF_CORE_COPY_REGS(dest, regs) dump_elf_thread(dest, regs);
  40. /* This yields a mask that user programs can use to figure out what
  41. instruction set this cpu supports. This could be done in userspace,
  42. but it's not easy, and we've already done it here. */
  43. #define ELF_HWCAP (0)
  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. For the moment, we have only optimizations for the Intel generations,
  48. but that could change... */
  49. #define ELF_PLATFORM (NULL)
  50. #endif