head.S 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. /*
  3. * Startup glue code to uncompress the kernel
  4. *
  5. * Copyright IBM Corp. 2010
  6. *
  7. * Author(s): Martin Schwidefsky <schwidefsky@de.ibm.com>
  8. */
  9. #include <linux/init.h>
  10. #include <linux/linkage.h>
  11. #include <asm/asm-offsets.h>
  12. #include <asm/thread_info.h>
  13. #include <asm/page.h>
  14. #include "sizes.h"
  15. __HEAD
  16. ENTRY(startup_decompressor)
  17. basr %r13,0 # get base
  18. .LPG1:
  19. # setup stack
  20. lg %r15,.Lstack-.LPG1(%r13)
  21. aghi %r15,-160
  22. brasl %r14,decompress_kernel
  23. # Set up registers for memory mover. We move the decompressed image to
  24. # 0x100000, where startup_continue of the decompressed image is supposed
  25. # to be.
  26. lgr %r4,%r2
  27. lg %r2,.Loffset-.LPG1(%r13)
  28. lg %r3,.Lmvsize-.LPG1(%r13)
  29. lgr %r5,%r3
  30. # Move the memory mover someplace safe so it doesn't overwrite itself.
  31. la %r1,0x200
  32. mvc 0(mover_end-mover,%r1),mover-.LPG1(%r13)
  33. # When the memory mover is done we pass control to
  34. # arch/s390/kernel/head64.S:startup_continue which lives at 0x100000 in
  35. # the decompressed image.
  36. lgr %r6,%r2
  37. br %r1
  38. mover:
  39. mvcle %r2,%r4,0
  40. jo mover
  41. br %r6
  42. mover_end:
  43. .align 8
  44. .Lstack:
  45. .quad 0x8000 + (1<<(PAGE_SHIFT+THREAD_SIZE_ORDER))
  46. .Loffset:
  47. .quad 0x100000
  48. .Lmvsize:
  49. .quad SZ__bss_start