arch/arm/include/asm/fpu.h

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

File Facts

System
Linux kernel
Corpus path
arch/arm/include/asm/fpu.h
Extension
.h
Size
309 bytes
Lines
16
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

#ifndef __ASM_FPU_H
#define __ASM_FPU_H

#include <asm/neon.h>

#define kernel_fpu_available()	cpu_has_neon()
#define kernel_fpu_begin()	kernel_neon_begin()
#define kernel_fpu_end()	kernel_neon_end()

#endif /* ! __ASM_FPU_H */

Annotation

Implementation Notes