Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
Alessio Igor Bogani | 97493e2e | 2016-05-30 11:47:16 +0200 | [diff] [blame] | 2 | #include "ppc_asm.h" |
3 | |||||
4 | .text | ||||
5 | .globl _zimage_start | ||||
6 | _zimage_start: | ||||
7 | mfmsr r10 | ||||
8 | rlwinm r10,r10,0,~(1<<15) /* Clear MSR_EE */ | ||||
9 | sync | ||||
10 | mtmsr r10 | ||||
11 | isync | ||||
12 | b _zimage_start_lib |