arch/arm/boot/compressed/big-endian.S

Source file repositories/reference/linux-study-clean/arch/arm/boot/compressed/big-endian.S

File Facts

System
Linux kernel
Corpus path
arch/arm/boot/compressed/big-endian.S
Extension
.S
Size
329 bytes
Lines
15
Domain
Architecture Layer
Bucket
arch/arm
Inferred role
Architecture Layer: arch/arm
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

.section ".start", "ax"

	mrc	p15, 0, r0, c1, c0, 0	@ read control reg
	orr	r0, r0, #(1 << 7)	@ enable big endian mode
	mcr	p15, 0, r0, c1, c0, 0	@ write control reg

Annotation

Implementation Notes