drivers/video/fbdev/stifb.c
Source file repositories/reference/linux-study-clean/drivers/video/fbdev/stifb.c
File Facts
- System
- Linux kernel
- Corpus path
drivers/video/fbdev/stifb.c- Extension
.c- Size
- 39780 bytes
- Lines
- 1532
- 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.
- 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/slab.hlinux/delay.hlinux/fb.hlinux/init.hlinux/ioport.hlinux/io.hasm/grfioctl.hlinux/uaccess.hvideo/sticore.h
Detected Declarations
struct stifb_infofunction SETUP_HWfunction SETUP_FBfunction START_IMAGE_COLORMAP_ACCESSfunction WRITE_IMAGE_COLORfunction FINISH_IMAGE_COLORMAP_ACCESSfunction SETUP_RAMDACfunction CRX24_SETUP_RAMDACfunction HCRX_SETUP_RAMDACfunction CRX24_SET_OVLY_MASKfunction ENABLE_DISABLE_DISPLAYfunction CRX24_ENABLE_DISABLE_DISPLAYfunction ARTIST_ENABLE_DISABLE_DISPLAYfunction HYPER_ENABLE_DISABLE_DISPLAYfunction SETUP_ATTR_ACCESSfunction SET_ATTR_SIZEfunction FINISH_ATTR_ACCESSfunction elkSetupPlanesfunction ngleSetupAttrPlanesfunction rattlerSetupPlanesfunction setNgleLutBltCtlfunction setHyperLutBltCtlfunction hyperUndoITEfunction ngleDepth8_ClearImagePlanesfunction problemfunction ngleClearOverlayPlanesfunction hyperResetPlanesfunction ngleGetDeviceRomDatafunction SETUP_HCRXfunction stifb_check_varfunction stifb_setcolregfunction stifb_blankfunction stifb_copyareafunction stifb_fillrectfunction stifb_init_displayfunction stifb_init_fbfunction stifb_initfunction stifb_cleanupfunction stifb_setupmodule init stifb_init
Annotated Snippet
module_init(stifb_init);
module_exit(stifb_cleanup);
MODULE_AUTHOR("Helge Deller <deller@gmx.de>, Thomas Bogendoerfer <tsbogend@alpha.franken.de>");
MODULE_DESCRIPTION("Framebuffer driver for HP's NGLE series graphics cards in HP PARISC machines");
MODULE_LICENSE("GPL v2");
Annotation
- Immediate include surface: `linux/module.h`, `linux/kernel.h`, `linux/errno.h`, `linux/string.h`, `linux/mm.h`, `linux/slab.h`, `linux/delay.h`, `linux/fb.h`.
- Detected declarations: `struct stifb_info`, `function SETUP_HW`, `function SETUP_FB`, `function START_IMAGE_COLORMAP_ACCESS`, `function WRITE_IMAGE_COLOR`, `function FINISH_IMAGE_COLORMAP_ACCESS`, `function SETUP_RAMDAC`, `function CRX24_SETUP_RAMDAC`, `function HCRX_SETUP_RAMDAC`, `function CRX24_SET_OVLY_MASK`.
- 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.