include/linux/fsl/netc_global.h
Source file repositories/reference/linux-study-clean/include/linux/fsl/netc_global.h
File Facts
- System
- Linux kernel
- Corpus path
include/linux/fsl/netc_global.h- Extension
.h- Size
- 441 bytes
- Lines
- 26
- Domain
- Core OS
- Bucket
- Core Kernel Interface
- Inferred role
- Core OS: implementation source
- Status
- source implementation candidate
Why This File Exists
Core operating-system implementation surface: boot, tasks, memory, VFS, syscall-facing interfaces, synchronization, credentials, and isolation.
- Core operating-system implementation surface: boot, tasks, memory, VFS, syscall-facing interfaces, synchronization, credentials, and isolation.
Dependency Surface
linux/io.hlinux/io-64-nonatomic-lo-hi.h
Detected Declarations
function netc_readfunction netc_writefunction netc_read64
Annotated Snippet
#ifndef __NETC_GLOBAL_H
#define __NETC_GLOBAL_H
#include <linux/io.h>
#include <linux/io-64-nonatomic-lo-hi.h>
static inline u32 netc_read(void __iomem *reg)
{
return ioread32(reg);
}
static inline void netc_write(void __iomem *reg, u32 val)
{
iowrite32(val, reg);
}
static inline u64 netc_read64(void __iomem *reg)
{
return ioread64(reg);
}
#endif
Annotation
- Immediate include surface: `linux/io.h`, `linux/io-64-nonatomic-lo-hi.h`.
- Detected declarations: `function netc_read`, `function netc_write`, `function netc_read64`.
- Atlas domain: Core OS / Core Kernel Interface.
- 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.