image.h 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. /*
  2. * Linker script macros to generate Image header fields.
  3. *
  4. * Copyright (C) 2014 ARM Ltd.
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License version 2 as
  8. * published by the Free Software Foundation.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  17. */
  18. #ifndef __ASM_IMAGE_H
  19. #define __ASM_IMAGE_H
  20. #ifndef LINKER_SCRIPT
  21. #error This file should only be included in vmlinux.lds.S
  22. #endif
  23. /*
  24. * There aren't any ELF relocations we can use to endian-swap values known only
  25. * at link time (e.g. the subtraction of two symbol addresses), so we must get
  26. * the linker to endian-swap certain values before emitting them.
  27. */
  28. #ifdef CONFIG_CPU_BIG_ENDIAN
  29. #define DATA_LE64(data) \
  30. ((((data) & 0x00000000000000ff) << 56) | \
  31. (((data) & 0x000000000000ff00) << 40) | \
  32. (((data) & 0x0000000000ff0000) << 24) | \
  33. (((data) & 0x00000000ff000000) << 8) | \
  34. (((data) & 0x000000ff00000000) >> 8) | \
  35. (((data) & 0x0000ff0000000000) >> 24) | \
  36. (((data) & 0x00ff000000000000) >> 40) | \
  37. (((data) & 0xff00000000000000) >> 56))
  38. #else
  39. #define DATA_LE64(data) ((data) & 0xffffffffffffffff)
  40. #endif
  41. #ifdef CONFIG_CPU_BIG_ENDIAN
  42. #define __HEAD_FLAG_BE 1
  43. #else
  44. #define __HEAD_FLAG_BE 0
  45. #endif
  46. #define __HEAD_FLAG_PAGE_SIZE ((PAGE_SHIFT - 10) / 2)
  47. #define __HEAD_FLAGS ((__HEAD_FLAG_BE << 0) | \
  48. (__HEAD_FLAG_PAGE_SIZE << 1))
  49. /*
  50. * These will output as part of the Image header, which should be little-endian
  51. * regardless of the endianness of the kernel. While constant values could be
  52. * endian swapped in head.S, all are done here for consistency.
  53. */
  54. #define HEAD_SYMBOLS \
  55. _kernel_size_le = DATA_LE64(_end - _text); \
  56. _kernel_offset_le = DATA_LE64(TEXT_OFFSET); \
  57. _kernel_flags_le = DATA_LE64(__HEAD_FLAGS);
  58. #ifdef CONFIG_EFI
  59. /*
  60. * Prevent the symbol aliases below from being emitted into the kallsyms
  61. * table, by forcing them to be absolute symbols (which are conveniently
  62. * ignored by scripts/kallsyms) rather than section relative symbols.
  63. * The distinction is only relevant for partial linking, and only for symbols
  64. * that are defined within a section declaration (which is not the case for
  65. * the definitions below) so the resulting values will be identical.
  66. */
  67. #define KALLSYMS_HIDE(sym) ABSOLUTE(sym)
  68. /*
  69. * The EFI stub has its own symbol namespace prefixed by __efistub_, to
  70. * isolate it from the kernel proper. The following symbols are legally
  71. * accessed by the stub, so provide some aliases to make them accessible.
  72. * Only include data symbols here, or text symbols of functions that are
  73. * guaranteed to be safe when executed at another offset than they were
  74. * linked at. The routines below are all implemented in assembler in a
  75. * position independent manner
  76. */
  77. __efistub_memcmp = KALLSYMS_HIDE(__pi_memcmp);
  78. __efistub_memchr = KALLSYMS_HIDE(__pi_memchr);
  79. __efistub_memcpy = KALLSYMS_HIDE(__pi_memcpy);
  80. __efistub_memmove = KALLSYMS_HIDE(__pi_memmove);
  81. __efistub_memset = KALLSYMS_HIDE(__pi_memset);
  82. __efistub_strlen = KALLSYMS_HIDE(__pi_strlen);
  83. __efistub_strcmp = KALLSYMS_HIDE(__pi_strcmp);
  84. __efistub_strncmp = KALLSYMS_HIDE(__pi_strncmp);
  85. __efistub___flush_dcache_area = KALLSYMS_HIDE(__pi___flush_dcache_area);
  86. #ifdef CONFIG_KASAN
  87. __efistub___memcpy = KALLSYMS_HIDE(__pi_memcpy);
  88. __efistub___memmove = KALLSYMS_HIDE(__pi_memmove);
  89. __efistub___memset = KALLSYMS_HIDE(__pi_memset);
  90. #endif
  91. __efistub__text = KALLSYMS_HIDE(_text);
  92. __efistub__end = KALLSYMS_HIDE(_end);
  93. __efistub__edata = KALLSYMS_HIDE(_edata);
  94. #endif
  95. #endif /* __ASM_IMAGE_H */