arch/s390/lib/delay.c
Source file repositories/reference/linux-study-clean/arch/s390/lib/delay.c
File Facts
- System
- Linux kernel
- Corpus path
arch/s390/lib/delay.c- Extension
.c- Size
- 940 bytes
- Lines
- 47
- Domain
- Architecture Layer
- Bucket
- arch/s390
- 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.
Dependency Surface
linux/processor.hlinux/export.hlinux/delay.hasm/div64.hasm/timex.h
Detected Declarations
function Authorfunction delay_loopfunction __udelayfunction __ndelayexport __delayexport __udelayexport __ndelay
Annotated Snippet
// SPDX-License-Identifier: GPL-2.0
/*
* Precise Delay Loops for S390
*
* Copyright IBM Corp. 1999, 2008
* Author(s): Martin Schwidefsky <schwidefsky@de.ibm.com>,
*/
#include <linux/processor.h>
#include <linux/export.h>
#include <linux/delay.h>
#include <asm/div64.h>
#include <asm/timex.h>
void __delay(unsigned long loops)
{
/*
* Loop 'loops' times. Callers must not assume a specific
* amount of time passes before this function returns.
*/
asm volatile("0: brct %0,0b" : : "d" ((loops/2) + 1));
}
EXPORT_SYMBOL(__delay);
static void delay_loop(unsigned long delta)
{
unsigned long end;
end = get_tod_clock_monotonic() + delta;
while (!tod_after(get_tod_clock_monotonic(), end))
cpu_relax();
}
void __udelay(unsigned long usecs)
{
delay_loop(usecs << 12);
}
EXPORT_SYMBOL(__udelay);
void __ndelay(unsigned long nsecs)
{
nsecs <<= 9;
do_div(nsecs, 125);
delay_loop(nsecs);
}
EXPORT_SYMBOL(__ndelay);
Annotation
- Immediate include surface: `linux/processor.h`, `linux/export.h`, `linux/delay.h`, `asm/div64.h`, `asm/timex.h`.
- Detected declarations: `function Author`, `function delay_loop`, `function __udelay`, `function __ndelay`, `export __delay`, `export __udelay`, `export __ndelay`.
- Atlas domain: Architecture Layer / arch/s390.
- 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.