arch/arm64/kernel/time.c
Source file repositories/reference/linux-study-clean/arch/arm64/kernel/time.c
File Facts
- System
- Linux kernel
- Corpus path
arch/arm64/kernel/time.c- Extension
.c- Size
- 1506 bytes
- Lines
- 73
- Domain
- Architecture Layer
- Bucket
- arch/arm64
- 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.
- CPU and platform-specific kernel glue: boot entry, traps, syscall entry, interrupts, page tables, context switch, and low-level barriers.
- Exports symbols or registers init work; inspect boot/module ordering and who consumes the exported contract.
- Defines or uses C structs; map object ownership, embedded links, reference counts, and lock ownership.
Dependency Surface
linux/clockchips.hlinux/export.hlinux/kernel.hlinux/interrupt.hlinux/time.hlinux/init.hlinux/sched.hlinux/smp.hlinux/timex.hlinux/errno.hlinux/profile.hlinux/stacktrace.hlinux/syscore_ops.hlinux/timer.hlinux/irq.hlinux/delay.hlinux/clocksource.hlinux/of_clk.hlinux/acpi.hclocksource/arm_arch_timer.hasm/thread_info.hasm/paravirt.h
Detected Declarations
function Copyrightfunction profile_pcfunction time_initexport profile_pc
Annotated Snippet
// SPDX-License-Identifier: GPL-2.0-only
/*
* Based on arch/arm/kernel/time.c
*
* Copyright (C) 1991, 1992, 1995 Linus Torvalds
* Modifications for ARM (C) 1994-2001 Russell King
* Copyright (C) 2012 ARM Ltd.
*/
#include <linux/clockchips.h>
#include <linux/export.h>
#include <linux/kernel.h>
#include <linux/interrupt.h>
#include <linux/time.h>
#include <linux/init.h>
#include <linux/sched.h>
#include <linux/smp.h>
#include <linux/timex.h>
#include <linux/errno.h>
#include <linux/profile.h>
#include <linux/stacktrace.h>
#include <linux/syscore_ops.h>
#include <linux/timer.h>
#include <linux/irq.h>
#include <linux/delay.h>
#include <linux/clocksource.h>
#include <linux/of_clk.h>
#include <linux/acpi.h>
#include <clocksource/arm_arch_timer.h>
#include <asm/thread_info.h>
#include <asm/paravirt.h>
static bool profile_pc_cb(void *arg, unsigned long pc)
{
unsigned long *prof_pc = arg;
if (in_lock_functions(pc))
return true;
*prof_pc = pc;
return false;
}
unsigned long profile_pc(struct pt_regs *regs)
{
unsigned long prof_pc = 0;
arch_stack_walk(profile_pc_cb, &prof_pc, current, regs);
return prof_pc;
}
EXPORT_SYMBOL(profile_pc);
void __init time_init(void)
{
u32 arch_timer_rate;
of_clk_init(NULL);
timer_probe();
tick_setup_hrtimer_broadcast();
arch_timer_rate = arch_timer_get_rate();
if (!arch_timer_rate)
panic("Unable to initialise architected timer.\n");
/* Calibrate the delay loop directly */
lpj_fine = arch_timer_rate / HZ;
pv_time_init();
}
Annotation
- Immediate include surface: `linux/clockchips.h`, `linux/export.h`, `linux/kernel.h`, `linux/interrupt.h`, `linux/time.h`, `linux/init.h`, `linux/sched.h`, `linux/smp.h`.
- Detected declarations: `function Copyright`, `function profile_pc`, `function time_init`, `export profile_pc`.
- Atlas domain: Architecture Layer / arch/arm64.
- Implementation status: integration 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.