motload-head.S 219 B

123456789101112
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #include "ppc_asm.h"
  3. .text
  4. .globl _zimage_start
  5. _zimage_start:
  6. mfmsr r10
  7. rlwinm r10,r10,0,~(1<<15) /* Clear MSR_EE */
  8. sync
  9. mtmsr r10
  10. isync
  11. b _zimage_start_lib