crt0-efi-loongarch64.S 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. /*
  2. * crt0-efi-loongarch64.S - PE/COFF header for LoongArch64 EFI applications
  3. *
  4. * Copyright (C) 2021 Loongson Technology Corporation Limited. <zhoumingtao@loongson.cn>
  5. * Copyright (C) 2014 Linaro Ltd. <ard.biesheuvel@linaro.org>
  6. *
  7. * Redistribution and use in source and binary forms, with or without
  8. * modification, are permitted provided that the following conditions
  9. * are met:
  10. * 1. Redistributions of source code must retain the above copyright
  11. * notice and this list of conditions, without modification.
  12. * 2. The name of the author may not be used to endorse or promote products
  13. * derived from this software without specific prior written permission.
  14. *
  15. * Alternatively, this software may be distributed under the terms of the
  16. * GNU General Public License as published by the Free Software Foundation;
  17. * either version 2 of the License, or (at your option) any later version.
  18. */
  19. .text
  20. .align 12
  21. .globl _start
  22. .type _start, @function
  23. _start:
  24. addi.d $sp, $sp, -24
  25. st.d $ra, $sp, 0
  26. st.d $a0, $sp, 8
  27. st.d $a1, $sp, 16
  28. move $a2, $a0 // a2: ImageHandle
  29. move $a3, $a1 // a3: SystemTable
  30. la.local $a0, ImageBase // a0: ImageBase
  31. la.local $a1, _DYNAMIC // a1: DynamicSection
  32. bl _relocate
  33. bnez $a0, 0f
  34. ld.d $a0, $sp, 8
  35. ld.d $a1, $sp, 16
  36. bl _entry
  37. 0: ld.d $ra, $sp, 0
  38. addi.d $sp, $sp, 24
  39. jr $ra
  40. // hand-craft a dummy .reloc section so EFI knows it's a relocatable executable:
  41. .data
  42. dummy: .4byte 0
  43. #define IMAGE_REL_ABSOLUTE 0
  44. .section .reloc, "a"
  45. label1:
  46. .4byte dummy-label1 // Page RVA
  47. .4byte 12 // Block Size (2*4+2*2), must be aligned by 32 Bits
  48. .2byte (IMAGE_REL_ABSOLUTE<<12) + 0 // reloc for dummy
  49. .2byte (IMAGE_REL_ABSOLUTE<<12) + 0 // reloc for dummy
  50. #if defined(__ELF__) && defined(__linux__)
  51. .section .note.GNU-stack,"",%progbits
  52. #endif