arch/microblaze/include/asm/setup.h

Source file repositories/reference/linux-study-clean/arch/microblaze/include/asm/setup.h

File Facts

System
Linux kernel
Corpus path
arch/microblaze/include/asm/setup.h
Extension
.h
Size
721 bytes
Lines
30
Domain
Architecture Layer
Bucket
arch/microblaze
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_MICROBLAZE_SETUP_H
#define _ASM_MICROBLAZE_SETUP_H

#include <uapi/asm/setup.h>

# ifndef __ASSEMBLER__
extern char cmd_line[COMMAND_LINE_SIZE];

extern char *klimit;

extern void mmu_reset(void);

void machine_early_init(const char *cmdline, unsigned int ram,
		unsigned int fdt, unsigned int msr, unsigned int tlb0,
		unsigned int tlb1);

void machine_restart(char *cmd);
void machine_shutdown(void);
void machine_halt(void);
void machine_power_off(void);

# endif /* __ASSEMBLER__ */
#endif /* _ASM_MICROBLAZE_SETUP_H */

Annotation

Implementation Notes