relocs.h 484 B

123456789101112131415161718192021222324
  1. /*
  2. * MIPS Relocations
  3. *
  4. * Copyright (c) 2017 Imagination Technologies Ltd.
  5. *
  6. * SPDX-License-Identifier: GPL-2.0+
  7. */
  8. #ifndef __ASM_MIPS_RELOCS_H__
  9. #define __ASM_MIPS_RELOCS_H__
  10. #define R_MIPS_NONE 0
  11. #define R_MIPS_32 2
  12. #define R_MIPS_26 4
  13. #define R_MIPS_HI16 5
  14. #define R_MIPS_LO16 6
  15. #define R_MIPS_PC16 10
  16. #define R_MIPS_64 18
  17. #define R_MIPS_HIGHER 28
  18. #define R_MIPS_HIGHEST 29
  19. #define R_MIPS_PC21_S2 60
  20. #define R_MIPS_PC26_S2 61
  21. #endif /* __ASM_MIPS_RELOCS_H__ */