drivers/video/console/sticon.c
Source file repositories/reference/linux-study-clean/drivers/video/console/sticon.c
File Facts
- System
- Linux kernel
- Corpus path
drivers/video/console/sticon.c- Extension
.c- Size
- 9994 bytes
- Lines
- 396
- Domain
- Driver Families
- Bucket
- drivers/video
- Inferred role
- Driver Families: exported/initcall integration point
- Status
- integration implementation candidate
Why This File Exists
Repeatable hardware-adapter layer. Deep compatibility for every driver is out of scope; this atlas records patterns, probe lifecycles, bus glue, IRQ/DMA usage, and links back to core abstractions.
- Repeatable hardware-adapter layer. Deep compatibility for every driver is out of scope; this atlas records patterns, probe lifecycles, bus glue, IRQ/DMA usage, and links back to core abstractions.
- Exports symbols or registers init work; inspect boot/module ordering and who consumes the exported contract.
- 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/init.hlinux/kernel.hlinux/console.hlinux/errno.hlinux/vt_kern.hlinux/kd.hlinux/selection.hlinux/module.hlinux/slab.hlinux/font.hlinux/crc32.hlinux/fb.hasm/io.hvideo/sticore.h
Detected Declarations
function sticon_putcsfunction sticon_cursorfunction sticon_scrollfunction sticon_set_def_fontfunction sticon_set_fontfunction sticon_font_defaultfunction sticon_font_setfunction sticon_initfunction sticon_deinitfunction sticon_clearfunction sticon_switchfunction sticon_blankfunction sticon_build_attrfunction sticon_invert_regionfunction sticonsole_initmodule init sticonsole_init
Annotated Snippet
module_init(sticonsole_init);
MODULE_DESCRIPTION("HP STI console driver");
MODULE_LICENSE("GPL");
Annotation
- Immediate include surface: `linux/init.h`, `linux/kernel.h`, `linux/console.h`, `linux/errno.h`, `linux/vt_kern.h`, `linux/kd.h`, `linux/selection.h`, `linux/module.h`.
- Detected declarations: `function sticon_putcs`, `function sticon_cursor`, `function sticon_scroll`, `function sticon_set_def_font`, `function sticon_set_font`, `function sticon_font_default`, `function sticon_font_set`, `function sticon_init`, `function sticon_deinit`, `function sticon_clear`.
- Atlas domain: Driver Families / drivers/video.
- 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.