https://github.com/torvalds/linux
Raw File
Tip revision: 16f73eb02d7e1765ccab3d2018e0bd98eb93d973 authored by Linus Torvalds on 30 July 2017, 19:40:36 UTC
Linux 4.13-rc3
Tip revision: 16f73eb
motload-head.S
#include "ppc_asm.h"

	.text
	.globl _zimage_start
_zimage_start:
	mfmsr   r10
	rlwinm  r10,r10,0,~(1<<15)        /* Clear MSR_EE */
	sync
	mtmsr   r10
	isync
	b	_zimage_start_lib
back to top