linux-kernel-image-header-vars.h 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. /*
  2. * (C) Copyright 2017 NVIDIA Corporation <www.nvidia.com>
  3. *
  4. * Derived from Linux kernel v4.14 files:
  5. *
  6. * arch/arm64/include/asm/assembler.h:
  7. * Based on arch/arm/include/asm/assembler.h, arch/arm/mm/proc-macros.S
  8. * Copyright (C) 1996-2000 Russell King
  9. * Copyright (C) 2012 ARM Ltd.
  10. *
  11. * arch/arm64/kernel/head.S:
  12. * Based on arch/arm/kernel/head.S
  13. * Copyright (C) 1994-2002 Russell King
  14. * Copyright (C) 2003-2012 ARM Ltd.
  15. * Authors: Catalin Marinas <catalin.marinas@arm.com>
  16. * Will Deacon <will.deacon@arm.com>
  17. *
  18. * arch/arm64/kernel/image.h:
  19. * Copyright (C) 2014 ARM Ltd.
  20. *
  21. * SPDX-License-Identifier: GPL-2.0
  22. */
  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. * Note that, in order for this to work when building the ELF64 PIE executable
  29. * (for KASLR), these values should not be referenced via R_AARCH64_ABS64
  30. * relocations, since these are fixed up at runtime rather than at build time
  31. * when PIE is in effect. So we need to split them up in 32-bit high and low
  32. * words.
  33. */
  34. #ifdef CONFIG_CPU_BIG_ENDIAN
  35. #define DATA_LE32(data) \
  36. ((((data) & 0x000000ff) << 24) | \
  37. (((data) & 0x0000ff00) << 8) | \
  38. (((data) & 0x00ff0000) >> 8) | \
  39. (((data) & 0xff000000) >> 24))
  40. #else
  41. #define DATA_LE32(data) ((data) & 0xffffffff)
  42. #endif
  43. #define DEFINE_IMAGE_LE64(sym, data) \
  44. sym##_lo32 = DATA_LE32((data) & 0xffffffff); \
  45. sym##_hi32 = DATA_LE32((data) >> 32)
  46. #define __MAX(a, b) (((a) > (b)) ? (a) : (b))
  47. #define __CODE_DATA_SIZE (__bss_start - _start)
  48. #define __BSS_SIZE (__bss_end - __bss_start)
  49. #ifdef CONFIG_SYS_INIT_SP_BSS_OFFSET
  50. #define __MAX_EXTRA_RAM_USAGE __MAX(__BSS_SIZE, CONFIG_SYS_INIT_SP_BSS_OFFSET)
  51. #else
  52. #define __MAX_EXTRA_RAM_USAGE __BSS_SIZE
  53. #endif
  54. #define __MEM_USAGE (__CODE_DATA_SIZE + __MAX_EXTRA_RAM_USAGE)
  55. #ifdef CONFIG_CPU_BIG_ENDIAN
  56. #define __HEAD_FLAG_BE 1
  57. #else
  58. #define __HEAD_FLAG_BE 0
  59. #endif
  60. #define __HEAD_FLAG_PAGE_SIZE 1 /* 4K hard-coded */
  61. #define __HEAD_FLAG_PHYS_BASE 1
  62. #define __HEAD_FLAGS ((__HEAD_FLAG_BE << 0) | \
  63. (__HEAD_FLAG_PAGE_SIZE << 1) | \
  64. (__HEAD_FLAG_PHYS_BASE << 3))
  65. #define TEXT_OFFSET (CONFIG_SYS_TEXT_BASE - \
  66. CONFIG_LNX_KRNL_IMG_TEXT_OFFSET_BASE)
  67. /*
  68. * These will output as part of the Image header, which should be little-endian
  69. * regardless of the endianness of the kernel. While constant values could be
  70. * endian swapped in head.S, all are done here for consistency.
  71. */
  72. #define HEAD_SYMBOLS \
  73. DEFINE_IMAGE_LE64(_kernel_size_le, __MEM_USAGE); \
  74. DEFINE_IMAGE_LE64(_kernel_offset_le, TEXT_OFFSET); \
  75. DEFINE_IMAGE_LE64(_kernel_flags_le, __HEAD_FLAGS);
  76. HEAD_SYMBOLS