arch/mips/include/asm/mach-generic/kernel-entry-init.h

Source file repositories/reference/linux-study-clean/arch/mips/include/asm/mach-generic/kernel-entry-init.h

File Facts

System
Linux kernel
Corpus path
arch/mips/include/asm/mach-generic/kernel-entry-init.h
Extension
.h
Size
698 bytes
Lines
26
Domain
Architecture Layer
Bucket
arch/mips
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_MACH_GENERIC_KERNEL_ENTRY_H
#define __ASM_MACH_GENERIC_KERNEL_ENTRY_H

/* Intentionally empty macro, used in head.S. Override in
 * arch/mips/mach-xxx/kernel-entry-init.h when necessary.
 */
	.macro	kernel_entry_setup
	.endm

/*
 * Do SMP slave processor setup necessary before we can safely execute C code.
 */
	.macro	smp_slave_setup
	.endm


#endif /* __ASM_MACH_GENERIC_KERNEL_ENTRY_H */

Annotation

Implementation Notes