nvtboot_ll.S 379 B

1234567891011121314151617181920
  1. /* SPDX-License-Identifier: GPL-2.0+ */
  2. /*
  3. * Save nvtboot-related boot-time CPU state
  4. *
  5. * (C) Copyright 2015-2016 NVIDIA Corporation <www.nvidia.com>
  6. */
  7. #include <config.h>
  8. #include <linux/linkage.h>
  9. .align 8
  10. .globl nvtboot_boot_x0
  11. nvtboot_boot_x0:
  12. .dword 0
  13. ENTRY(save_boot_params)
  14. adr x8, nvtboot_boot_x0
  15. str x0, [x8]
  16. b save_boot_params_ret
  17. ENDPROC(save_boot_params)