arch/powerpc/boot/motload-head.S

Source file repositories/reference/linux-study-clean/arch/powerpc/boot/motload-head.S

File Facts

System
Linux kernel
Corpus path
arch/powerpc/boot/motload-head.S
Extension
.S
Size
219 bytes
Lines
13
Domain
Architecture Layer
Bucket
arch/powerpc
Inferred role
Architecture Layer: arch/powerpc
Status
atlas-only

Why This File Exists

CPU and platform-specific kernel glue: boot entry, traps, syscall entry, interrupts, page tables, context switch, and low-level barriers.

Dependency Surface

Detected Declarations

Annotated Snippet

#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

Annotation

Implementation Notes