drivers/video/fbdev/68328fb.c
Source file repositories/reference/linux-study-clean/drivers/video/fbdev/68328fb.c
File Facts
- System
- Linux kernel
- Corpus path
drivers/video/fbdev/68328fb.c- Extension
.c- Size
- 13124 bytes
- Lines
- 483
- 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/module.hlinux/kernel.hlinux/errno.hlinux/string.hlinux/mm.hlinux/vmalloc.hlinux/delay.hlinux/interrupt.hlinux/uaccess.hlinux/fb.hlinux/init.hasm/MC68VZ328.hasm/MC68EZ328.hasm/MC68328.h
Detected Declarations
function get_line_lengthfunction mc68x328fb_check_varfunction mc68x328fb_set_parfunction mc68x328fb_setcolregfunction tofunction mc68x328fb_pan_displayfunction mc68x328fb_mmapfunction mc68x328fb_setupfunction mc68x328fb_initfunction mc68x328fb_cleanupmodule init mc68x328fb_init
Annotated Snippet
module_init(mc68x328fb_init);
#ifdef MODULE
static void __exit mc68x328fb_cleanup(void)
{
unregister_framebuffer(&fb_info);
fb_dealloc_cmap(&fb_info.cmap);
}
module_exit(mc68x328fb_cleanup);
MODULE_LICENSE("GPL");
#endif /* MODULE */
Annotation
- Immediate include surface: `linux/module.h`, `linux/kernel.h`, `linux/errno.h`, `linux/string.h`, `linux/mm.h`, `linux/vmalloc.h`, `linux/delay.h`, `linux/interrupt.h`.
- Detected declarations: `function get_line_length`, `function mc68x328fb_check_var`, `function mc68x328fb_set_par`, `function mc68x328fb_setcolreg`, `function to`, `function mc68x328fb_pan_display`, `function mc68x328fb_mmap`, `function mc68x328fb_setup`, `function mc68x328fb_init`, `function mc68x328fb_cleanup`.
- 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.