arch/arm/include/asm/cpu.h

Source file repositories/reference/linux-study-clean/arch/arm/include/asm/cpu.h

File Facts

System
Linux kernel
Corpus path
arch/arm/include/asm/cpu.h
Extension
.h
Size
370 bytes
Lines
23
Domain
Architecture Layer
Bucket
arch/arm
Inferred role
Architecture Layer: implementation source
Status
source implementation candidate

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

struct cpuinfo_arm {
	u32		cpuid;
#ifdef CONFIG_SMP
	unsigned int	loops_per_jiffy;
#endif
};

DECLARE_PER_CPU(struct cpuinfo_arm, cpu_data);

#endif

Annotation

Implementation Notes