arch/arm/mach-highbank/system.c
Source file repositories/reference/linux-study-clean/arch/arm/mach-highbank/system.c
File Facts
- System
- Linux kernel
- Corpus path
arch/arm/mach-highbank/system.c- Extension
.c- Size
- 389 bytes
- Lines
- 23
- 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.
Dependency Surface
linux/io.hasm/proc-fns.hlinux/reboot.hcore.hsysregs.h
Detected Declarations
function highbank_restart
Annotated Snippet
// SPDX-License-Identifier: GPL-2.0-only
/*
* Copyright 2011 Calxeda, Inc.
*/
#include <linux/io.h>
#include <asm/proc-fns.h>
#include <linux/reboot.h>
#include "core.h"
#include "sysregs.h"
void highbank_restart(enum reboot_mode mode, const char *cmd)
{
if (mode == REBOOT_HARD)
highbank_set_pwr_hard_reset();
else
highbank_set_pwr_soft_reset();
while (1)
cpu_do_idle();
}
Annotation
- Immediate include surface: `linux/io.h`, `asm/proc-fns.h`, `linux/reboot.h`, `core.h`, `sysregs.h`.
- Detected declarations: `function highbank_restart`.
- 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.