arch/sh/boards/mach-x3proto/setup.c

Source file repositories/reference/linux-study-clean/arch/sh/boards/mach-x3proto/setup.c

File Facts

System
Linux kernel
Corpus path
arch/sh/boards/mach-x3proto/setup.c
Extension
.c
Size
5800 bytes
Lines
271
Domain
Architecture Layer
Bucket
arch/sh
Inferred role
Architecture Layer: exported/initcall integration point
Status
integration 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

device_initcall(x3proto_devices_setup);

static void __init x3proto_setup(char **cmdline_p)
{
	register_smp_ops(&shx3_smp_ops);
}

static struct sh_machine_vector mv_x3proto __initmv = {
	.mv_name		= "x3proto",
	.mv_setup		= x3proto_setup,
};

Annotation

Implementation Notes