lowlevel_init.S 266 B

12345678910111213
  1. /* SPDX-License-Identifier: GPL-2.0+ */
  2. /*
  3. * Copyright (C) 2017 Socionext Inc.
  4. */
  5. #include <linux/linkage.h>
  6. ENTRY(lowlevel_init)
  7. /* LD20 needs the following code to boot. I do not know why. */
  8. mrs x0, sctlr_el1
  9. msr sctlr_el1, x0
  10. ret
  11. ENDPROC(lowlevel_init)