arch/arm/mach-mvebu/board-v7.c
Source file repositories/reference/linux-study-clean/arch/arm/mach-mvebu/board-v7.c
File Facts
- System
- Linux kernel
- Corpus path
arch/arm/mach-mvebu/board-v7.c- Extension
.c- Size
- 5259 bytes
- Lines
- 211
- 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.
- CPU and platform-specific kernel glue: boot entry, traps, syscall entry, interrupts, page tables, context switch, and low-level barriers.
- Allocates kernel memory; connect allocation flags and lifetime to context constraints.
- Defines or uses C structs; map object ownership, embedded links, reference counts, and lock ownership.
Dependency Surface
linux/kernel.hlinux/init.hlinux/of_address.hlinux/of_fdt.hlinux/io.hlinux/clocksource.hlinux/dma-mapping.hlinux/memblock.hlinux/mbus.hlinux/slab.hlinux/irqchip.hasm/hardware/cache-l2x0.hasm/mach/arch.hasm/mach/map.hasm/mach/time.hasm/smp_scu.harmada-370-xp.hcommon.hcoherency.hmvebu-soc-id.h
Detected Declarations
function mvebu_scu_enablefunction mvebu_scan_memfunction mvebu_memblock_reservefunction mvebu_memblock_reservefunction i2c_quirkfunction for_each_compatible_nodefunction mvebu_dt_initfunction armada_370_xp_dt_fixup
Annotated Snippet
static void __init mvebu_memblock_reserve(void) {}
#endif
static void __init mvebu_init_irq(void)
{
irqchip_init();
mvebu_scu_enable();
coherency_init();
BUG_ON(mvebu_mbus_dt_init(coherency_available()));
}
static void __init i2c_quirk(void)
{
struct device_node *np;
u32 dev, rev;
/*
* Only revisons more recent than A0 support the offload
* mechanism. We can exit only if we are sure that we can
* get the SoC revision and it is more recent than A0.
*/
if (mvebu_get_soc_id(&dev, &rev) == 0 && rev > MV78XX0_A0_REV)
return;
for_each_compatible_node(np, NULL, "marvell,mv78230-i2c") {
struct property *new_compat;
new_compat = kzalloc_obj(*new_compat);
new_compat->name = kstrdup("compatible", GFP_KERNEL);
new_compat->length = sizeof("marvell,mv78230-a0-i2c");
new_compat->value = kstrdup("marvell,mv78230-a0-i2c",
GFP_KERNEL);
of_update_property(np, new_compat);
}
}
static void __init mvebu_dt_init(void)
{
if (of_machine_is_compatible("marvell,armadaxp"))
i2c_quirk();
}
static void __init armada_370_xp_dt_fixup(void)
{
#ifdef CONFIG_SMP
smp_set_ops(smp_ops(armada_xp_smp_ops));
#endif
}
static const char * const armada_370_xp_dt_compat[] __initconst = {
"marvell,armada-370-xp",
NULL,
};
DT_MACHINE_START(ARMADA_370_XP_DT, "Marvell Armada 370/XP (Device Tree)")
.l2c_aux_val = 0,
.l2c_aux_mask = ~0,
.init_machine = mvebu_dt_init,
.init_irq = mvebu_init_irq,
.restart = mvebu_restart,
.reserve = mvebu_memblock_reserve,
.dt_compat = armada_370_xp_dt_compat,
.dt_fixup = armada_370_xp_dt_fixup,
MACHINE_END
static const char * const armada_375_dt_compat[] __initconst = {
"marvell,armada375",
NULL,
};
DT_MACHINE_START(ARMADA_375_DT, "Marvell Armada 375 (Device Tree)")
.l2c_aux_val = 0,
.l2c_aux_mask = ~0,
.init_irq = mvebu_init_irq,
.init_machine = mvebu_dt_init,
.restart = mvebu_restart,
.dt_compat = armada_375_dt_compat,
MACHINE_END
static const char * const armada_38x_dt_compat[] __initconst = {
"marvell,armada380",
"marvell,armada385",
NULL,
};
DT_MACHINE_START(ARMADA_38X_DT, "Marvell Armada 380/385 (Device Tree)")
.l2c_aux_val = 0,
.l2c_aux_mask = ~0,
Annotation
- Immediate include surface: `linux/kernel.h`, `linux/init.h`, `linux/of_address.h`, `linux/of_fdt.h`, `linux/io.h`, `linux/clocksource.h`, `linux/dma-mapping.h`, `linux/memblock.h`.
- Detected declarations: `function mvebu_scu_enable`, `function mvebu_scan_mem`, `function mvebu_memblock_reserve`, `function mvebu_memblock_reserve`, `function i2c_quirk`, `function for_each_compatible_node`, `function mvebu_dt_init`, `function armada_370_xp_dt_fixup`.
- Atlas domain: Architecture Layer / arch/arm.
- Implementation status: source implementation candidate.
Implementation Notes
- This generated page is the file-by-file coverage layer; curated subsystem chapters should link here when they synthesize a multi-file control flow.
- Core OS pages should be promoted from atlas-only to deep-reviewed when they explain data structures, invariants, locking, lifecycle, and C implementation snippets.
- Driver-family pages are intentionally pattern-oriented unless they are part of the selected PCIe/NVMe representative device path.